2025-09-28 01:53:09 +00:00
|
|
|
package response
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type MasterModulesResponse struct {
|
|
|
|
|
ID uint `json:"id"`
|
|
|
|
|
Name string `json:"name"`
|
|
|
|
|
Description string `json:"description"`
|
|
|
|
|
PathUrl string `json:"path_url"`
|
2026-01-18 19:58:10 +00:00
|
|
|
ActionType *string `json:"action_type"`
|
2025-09-28 01:53:09 +00:00
|
|
|
StatusId int `json:"status_id"`
|
|
|
|
|
IsActive *bool `json:"is_active"`
|
|
|
|
|
CreatedAt time.Time `json:"created_at"`
|
|
|
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
|
|
|
}
|