19 lines
572 B
Go
19 lines
572 B
Go
package response
|
|
|
|
import "time"
|
|
|
|
type MasterMenusResponse struct {
|
|
ID uint `json:"id"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
ModuleId int `json:"module_id"`
|
|
ParentMenuId *int `json:"parent_menu_id"`
|
|
Group string `json:"group"`
|
|
Icon *string `json:"icon"`
|
|
Position *int `json:"position"`
|
|
StatusId int `json:"status_id"`
|
|
IsActive *bool `json:"is_active"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|