/* Options: Date: 2026-09-02 00:44:54 Version: 10.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazor-vue.web-templates.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AdminData.* //ExcludeTypes: //DefaultImports: */ package dtos type PageStats struct { Label string `json:"label"` Total int `json:"total,omitempty"` } type AdminDataResponse struct { PageStats []PageStats `json:"pageStats"` } type AdminData struct { } func (AdminData) CreateResponse() (r AdminDataResponse) { return } func (AdminData) HttpMethod() string { return "GET" }