memos/proto/api/v1/reaction_service.proto

18 lines
247 B
Protocol Buffer
Raw Normal View History

2024-02-08 11:54:59 +08:00
syntax = "proto3";
2024-04-28 00:44:29 +08:00
package memos.api.v1;
2024-02-08 11:54:59 +08:00
2024-04-28 00:44:29 +08:00
option go_package = "gen/api/v1";
2024-02-08 11:54:59 +08:00
message Reaction {
int32 id = 1;
2024-03-18 12:56:52 +08:00
// The name of the creator.
2024-03-20 20:39:16 +08:00
// Format: users/{id}
2024-02-08 11:54:59 +08:00
string creator = 2;
string content_id = 3;
2024-10-10 21:06:32 +08:00
string reaction_type = 4;
2024-02-08 11:54:59 +08:00
}