service/api/proto/notification/proto/notification_unread_vo_api.go

9 lines
209 B
Go

package proto
import "service/dbstruct"
type NotificationUnreadApiVO struct {
UnreadCnt int64 `json:"unread_cnt"`
MostRecentNotif *dbstruct.Notification `json:"most_recent_notif"`
}