From ac441c063f52ef11b53065ee8e3acadd7264a05c Mon Sep 17 00:00:00 2001 From: PARK BYUNG JUN Date: Wed, 10 Aug 2022 02:30:16 +0000 Subject: [PATCH] site is changed --- proto/models/domain/site.proto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/proto/models/domain/site.proto b/proto/models/domain/site.proto index 9d15792..b6eb78b 100644 --- a/proto/models/domain/site.proto +++ b/proto/models/domain/site.proto @@ -5,12 +5,12 @@ package bet.beteran.domain; message Site { string id = 1; string url = 2; - string name = 3; - string path = 4; + optional string name = 3; + optional string path = 4; bool show = 5; bool can_use = 6; - string memo = 7; - uint64 expires_at = 8; + optional string memo = 7; + optional uint64 expires_at = 8; uint64 created_at = 9; uint64 updated_at = 10; }