14 lines
250 B
Go
Raw Normal View History

2023-10-08 15:59:42 +07:00
package response
type LoginResponse struct {
Token string `json:"token"`
Name string `json:"name"`
Role Role `json:"role"`
Branch *Branch `json:"branch"`
}
type Role struct {
ID int64 `json:"id"`
Role string `json:"role_name"`
}