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

15 lines
393 B
Go

package response
import "time"
type MasterModulesResponse struct {
ID uint `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
PathUrl string `json:"pathUrl"`
StatusId int `json:"statusId"`
IsActive *bool `json:"isActive"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}