18 lines
526 B
Go
18 lines
526 B
Go
package response
|
|
|
|
import "time"
|
|
|
|
type MasterMenusResponse struct {
|
|
ID uint `json:"id"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
ModuleId int `json:"moduleId"`
|
|
ParentMenuId *int `json:"parentMenuId"`
|
|
Icon *string `json:"icon"`
|
|
Position *int `json:"position"`
|
|
StatusId int `json:"statusId"`
|
|
IsActive *bool `json:"isActive"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|