medol-be/app/module/user_roles/response/user_roles.response.go

16 lines
450 B
Go
Raw Normal View History

2024-03-05 19:15:53 +00:00
package response
import "time"
type UserRolesResponse struct {
ID uint `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
Code string `json:"code"`
LevelNumber int `json:"level_number"`
StatusId int `json:"status_id"`
CreatedById int `json:"created_by_id"`
IsActive bool `json:"is_active"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}