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"` }