17 lines
312 B
Protocol Buffer
17 lines
312 B
Protocol Buffer
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;
|
|
}
|
|
|