mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
20 lines
472 B
Protocol Buffer
20 lines
472 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "models/model_admin.proto";
|
|
import "models/model_message_recipient_group.proto";
|
|
import "models/model_message_media_instance.proto";
|
|
|
|
message MessageRecipient {
|
|
int64 id = 1;
|
|
Admin admin = 2;
|
|
MessageMediaInstance messageMediaInstance = 3;
|
|
bool isOn = 4;
|
|
repeated MessageRecipientGroup messageRecipientGroups = 5;
|
|
string description = 6;
|
|
string user = 7;
|
|
string timeFrom = 8;
|
|
string timeTo = 9;
|
|
} |