export interface User { UserId: null | number; UserName: string; FirstName: string; LastName: string; AuthTypeId: number | null; IsActive: boolean; LastLogin: null | Date; DefaultAssetId: number | null; ProfilesId: string | number[]; Profiles: string | string[]; Permissions: string | string[]; }