/* Options: Date: 2026-04-05 18:19:43 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://internal.thebunkerbridge.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EntityContactsLogin.* //ExcludeTypes: //DefaultImports: */ export class EntityLoginViewModel { public EntityContactId?: number; public EntityContactGuid?: string; public EmailAddress: string; public Token: string; public DarkMode: boolean; public Success: boolean; public EmailAddressVerifiedError: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/Entity-Contacts/Login", "POST") export class EntityContactsLogin implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'EntityContactsLogin'; } public getMethod() { return 'POST'; } public createResponse() { return new EntityLoginViewModel(); } }