-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathccli.proto
More file actions
executable file
·46 lines (37 loc) · 977 Bytes
/
Copy pathccli.proto
File metadata and controls
executable file
·46 lines (37 loc) · 977 Bytes
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
41
42
43
44
45
syntax = "proto3";
package rv.data;
option cc_enable_arenas = true;
option csharp_namespace = "Pro.SerializationInterop.RVProtoData";
option swift_prefix = "RVData_";
import "applicationInfo.proto";
import "template.proto";
message CCLIDocument {
enum DisplayType {
DISPLAY_TYPE_FIRST_SLIDE = 0;
DISPLAY_TYPE_LAST_SLIDE = 1;
DISPLAY_TYPE_FIRST_AND_LAST_SLIDE = 2;
DISPLAY_TYPE_ALL_SLIDES = 3;
}
.rv.data.ApplicationInfo application_info = 1;
bool enable_ccli_display = 2;
string ccli_license = 3;
.rv.data.CCLIDocument.DisplayType display_type = 4;
.rv.data.Template.Slide template = 5;
}
message CopyrightLayout {
message Token {
.rv.data.CopyrightLayout.TokenType token_type = 1;
string text = 2;
}
enum TokenType {
Text = 0;
Artist = 1;
Author = 2;
Publisher = 3;
Title = 4;
CopyrightYear = 5;
LicenseNumber = 6;
SongNumber = 7;
}
repeated .rv.data.CopyrightLayout.Token tokens = 2;
}