mirror of
https://github.com/FloatTech/ZeroBot-Plugin.git
synced 2025-12-19 13:59:39 +08:00
17 lines
284 B
Protocol Buffer
17 lines
284 B
Protocol Buffer
syntax = "proto3";
|
|
package timer;
|
|
|
|
message Timer {
|
|
bool enable = 1;
|
|
string alert = 2;
|
|
string url = 3;
|
|
sint32 month = 4;
|
|
sint32 day = 5;
|
|
sint32 week = 6;
|
|
sint32 hour = 7;
|
|
sint32 minute = 8;
|
|
}
|
|
|
|
message TimersMap {
|
|
map<string, Timer> timers = 1;
|
|
} |