-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathccli.proto
40 lines (34 loc) · 851 Bytes
/
ccli.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
syntax = "proto3";
package rv.data;
import "applicationInfo.proto";
import "template.proto";
message CCLIDocument {
rv.data.ApplicationInfo application_info = 1;
bool enable_ccli_display = 2;
string ccli_license = 3;
enum DisplayType {
DISPLAY_TYPE_FIRST_SLIDE = 0;
DISPLAY_TYPE_LAST_SLIDE = 1;
DISPLAY_TYPE_FIRST_AND_LAST_SLIDE = 2;
DISPLAY_TYPE_ALL_SLIDES = 3;
}
DisplayType display_type = 4;
rv.data.Template.Slide template = 5;
}
message CopyrightLayout {
repeated rv.data.CopyrightLayout.Token tokens = 2;
message Token {
enum TokenType {
Text = 0;
Artist = 1;
Author = 2;
Publisher = 3;
Title = 4;
CopyrightYear = 5;
LicenseNumber = 6;
SongNumber = 7;
}
TokenType token_type = 1;
string text = 2;
}
}