/* Options: Date: 2025-12-06 13:16:06 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateAsRead.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IResponseRequest { code: number; message: string; } /** @description Cập nhật sang đã đọc theo notification Id */ // @Route("/notifications/{Id}", "Post") // @Route("/notifications", "Post") export class UpdateAsRead implements IReturn { public id?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateAsRead'; } public getMethod() { return 'POST'; } public createResponse() { return new IResponseRequest(); } }