import { AccessRole, AccessType, AuthType } from './types'; export type UserId = number; export interface UserContactModel { title: string; firstName: string; lastName: string; fullName: string; fullNameWithTitle: string; mail: string; phone: string; avatarUrl: string; countryId: number; address: string; } export interface UserModel { id: UserId; isActive: boolean; accessTypeId: AccessType; accessAuthenticationTypeId: AuthType; contact: UserContactModel; roleId: AccessRole; }