import { BaseModel } from './base'; import { Role } from './Role'; export interface User extends BaseModel { Password: string; OldPassword?: string; PhoneNumber?: string; FirstName: string; LastName: string; Name: string; MailAddress: string; Token?: string; ExpireOn: Date; IsSeeded: boolean; RoleID?: string; OTP?: string; Department?: string; Faculty?: string; OTPExpireOn: Date; Tenants: string[]; DepartmentName?: string; DefaultCompany: string; Companies: string; Role?: Role; }