/* Options: Date: 2025-12-06 13:08:21 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: GetHeadTTPC.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class UserLogin { // @Required() public name: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class UserProfile extends UserLogin { public id: number; public fullName?: string; public email?: string; public departmentId?: number; public partyGroupId?: number; public avatar?: string; public telephone?: string; public birthday?: string; public createdAt?: string; public updatedAt?: string; public failedLoginCount: number; // @Ignore() public roles: number[]; public lastLoginDate?: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class AllUserResponse { public users: UserProfile[]; public code: number; public message: string; public totalCount: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/users/head-of-ttpc", "Get") export class GetHeadTTPC implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetHeadTTPC'; } public getMethod() { return 'GET'; } public createResponse() { return new AllUserResponse(); } }