2024-03-05 19:15:53 +00:00
|
|
|
package response
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type UserRolesResponse struct {
|
2024-03-31 11:59:32 +00:00
|
|
|
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"`
|
|
|
|
|
}
|