16 lines
442 B
Go
16 lines
442 B
Go
package response
|
|
|
|
import "time"
|
|
|
|
type MasterModulesResponse struct {
|
|
ID uint `json:"id"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
PathUrl string `json:"path_url"`
|
|
ActionType *string `json:"action_type"`
|
|
StatusId int `json:"status_id"`
|
|
IsActive *bool `json:"is_active"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|