Initial Commit
This commit is contained in:
commit
87a522daab
22 changed files with 1555 additions and 0 deletions
17
proto/calendar.proto
Normal file
17
proto/calendar.proto
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
syntax = "proto3";
|
||||
|
||||
package calendar;
|
||||
|
||||
option go_package = "git.skdevstudios.com/SK-Development-Studios/go-cal-tui/calendar";
|
||||
|
||||
message Event {
|
||||
string title = 1;
|
||||
string description = 2;
|
||||
int32 year = 3;
|
||||
int32 month = 4;
|
||||
int32 day = 5;
|
||||
int32 start_hour = 6;
|
||||
int32 end_hour = 7;
|
||||
string color = 8;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue