comment the chats proto

This commit is contained in:
Asim Aslam
2021-05-07 18:09:46 +01:00
parent 6a7273d39d
commit 45370bc04b

View File

@@ -20,7 +20,7 @@ message Chat {
string id = 1;
// list of users in the chat
repeated string user_ids = 2;
// RFC3339Nano timestamp
// RFC3339 Nano timestamp e.g 2006-01-02T15:04:05.999999999Z07:00
string created_at = 3;
}
@@ -33,7 +33,7 @@ message Message {
string chat_id = 3;
// text within the message
string text = 4;
// RFC3339Nano timestamp
// RFC3339 Nano timestamp e.g 2006-01-02T15:04:05.999999999Z07:00
string sent_at = 5;
}