mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-10 01:10:27 +08:00
12 lines
175 B
Protocol Buffer
12 lines
175 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message SSLCert {
|
|
int64 id = 1;
|
|
bool isOn = 2;
|
|
string name = 3;
|
|
int64 timeBeginAt = 4;
|
|
int64 timeEndAt = 5;
|
|
} |