/* Options: Date: 2025-12-06 07:01:19 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //GlobalNamespace: BackofficeApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetAllNewsRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export class NewsDto { public subject: string; public body: string; public author: string; public createdAt?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetAllNewsResponse { public news: NewsDto[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/news/get_all", "GET") export class GetAllNewsRequest implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetAllNewsRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new GetAllNewsResponse(); } } }