2024-03-05 19:15:53 +00:00
|
|
|
package response
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type MasterMenusResponse struct {
|
2024-04-29 18:09:11 +00:00
|
|
|
ID uint `json:"id"`
|
|
|
|
|
Name string `json:"name"`
|
2024-03-05 19:15:53 +00:00
|
|
|
Description string `json:"description"`
|
2024-04-29 18:09:11 +00:00
|
|
|
ModuleId int `json:"module_id"`
|
|
|
|
|
ParentMenuId int `json:"parent_menu_id"`
|
|
|
|
|
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"`
|
|
|
|
|
}
|