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

17 lines
474 B
Go
Raw Normal View History

2025-09-19 04:08:42 +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"`
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"`
2025-09-19 04:08:42 +00:00
}