19 lines
523 B
Go
19 lines
523 B
Go
|
|
package response
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type MenuActionsResponse struct {
|
||
|
|
ID uint `json:"id"`
|
||
|
|
MenuId uint `json:"menuId"`
|
||
|
|
ActionCode string `json:"actionCode"`
|
||
|
|
ActionName string `json:"actionName"`
|
||
|
|
Description *string `json:"description"`
|
||
|
|
PathUrl *string `json:"pathUrl"`
|
||
|
|
HttpMethod *string `json:"httpMethod"`
|
||
|
|
Position *int `json:"position"`
|
||
|
|
IsActive *bool `json:"isActive"`
|
||
|
|
CreatedAt time.Time `json:"createdAt"`
|
||
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
||
|
|
}
|
||
|
|
|