Files
mixtape/zero.Backoffice.UI/app/account/account.d.ts
T
2021-12-09 14:18:38 +01:00

28 lines
449 B
TypeScript

declare module 'zero/account'
{
export interface AccountUser
{
id: string;
currentAppId: string;
isSuper: boolean;
avatarId: string;
email: string;
name: string;
isActive: boolean;
createdDate: string;
flavor?: string;
}
export interface AccountStoreState
{
user?: AccountUser;
}
export interface AccountLoginModel
{
email: string;
password: string;
isPersistent: boolean;
}
}