Files
FarmMapsLib/projects/common/src/fm/models/user.ts
Francisco Salas d833f321d1
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
aw-1837 add language to user
2021-06-11 08:40:13 +02:00

19 lines
386 B
TypeScript

export interface IUser {
code?: string;
name?: string;
email?: string;
claims: any;
firstName?: string;
lastName?: string;
address?: string;
postalCode?: string;
city?: string;
country?: string;
phone?: string;
mobile?: string;
organisation?: string;
cocNumber?: string;
searchable: boolean;
newsletter?: boolean;
language?: string;
}