Skip to content

Commit

Permalink
T #98 added rest of the DB models to proto
Browse files Browse the repository at this point in the history
  • Loading branch information
HueByte committed Oct 6, 2022
1 parent 6c7ba38 commit 91d8d93
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/HuppyService/HuppyService.Service/Protos/database.proto
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,22 @@ message ServerRoomsModel {

message CommonResponse {
bool IsSuccess = 1;
}

message ReminderModel {
int32 Id = 1;
uint64 UnixTime = 2;
string Message = 3;
uint64 UserId = 4;
}

message TicketModel {
int32 Id = 1;
string Topic = 2;
string Description = 3;
bool IsClosed = 4;
string TicketAnswer = 5;
uint64 CreatedDate = 6;
uint64 ClosedDate = 7;
uint64 UserId = 8;
}

0 comments on commit 91d8d93

Please sign in to comment.