/* Options: Date: 2025-07-17 23:43:10 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: StorageGetListReq.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class MediaContent { public fileName: string; public contentType: string; public file: string; public uri: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class StorageResponse { public mediaList: MediaContent[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/storage/list", "GET") export class StorageGetListReq implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'StorageGetListReq'; } public getMethod() { return 'GET'; } public createResponse() { return new StorageResponse(); } }