26 lines
595 B
TypeScript
26 lines
595 B
TypeScript
export declare enum UserState {
|
|
REGISTERED_NOT_VERIFIED = 0,
|
|
VERIFIED_REGULAR = 1,
|
|
VERIFIED_PREMIUM = 2,
|
|
SOFT_DELETE = 3,
|
|
DEACTIVATED = 4,
|
|
ADMIN = 5
|
|
}
|
|
export declare class UserAggregate {
|
|
id: string;
|
|
orgid: string | null;
|
|
username: string;
|
|
password: string;
|
|
email: string;
|
|
fname: string;
|
|
lname: string;
|
|
token: string | null;
|
|
TokenExpires: Date | null;
|
|
type: string;
|
|
phone: string | null;
|
|
state: UserState;
|
|
regdate: Date;
|
|
updatedate: Date;
|
|
Orglogindate: Date | null;
|
|
}
|
|
//# sourceMappingURL=UserAggregate.d.ts.map
|