qudoco-be/app/module/master_modules/response/master_modules.response.go

15 lines
398 B
Go
Raw Normal View History

2026-02-24 09:37:19 +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"`
StatusId int `json:"status_id"`
IsActive *bool `json:"is_active"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}