17 lines
474 B
Go
17 lines
474 B
Go
package response
|
|
|
|
import "time"
|
|
|
|
type UserRolesResponse struct {
|
|
ID uint `json:"id"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Code string `json:"code"`
|
|
UserLevelId uint `json:"userLevelId"`
|
|
StatusId int `json:"statusId"`
|
|
CreatedById *uint `json:"createdById"`
|
|
IsActive *bool `json:"isActive"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|