DocSpace-buildtools/common/ASC.Core.Common/protos/notify_message.proto

23 lines
532 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package ASC.Notify.Messages;
message NotifyMessage {
2022-02-18 12:54:39 +00:00
int32 tenant_id = 1;
string sender_type = 2;
string sender = 3;
string reciever = 4;
string reply_to = 5;
string subject = 6;
string content_type = 7;
string content = 8;
int64 creation_date = 9;
int32 priority = 10;
2022-02-18 12:54:39 +00:00
repeated NotifyMessageAttachment attachments = 11;
string auto_submitted = 12;
}
message NotifyMessageAttachment {
string FileName = 1;
string ContentId = 2;
bytes Content = 3;
}