All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
19 lines
386 B
TypeScript
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;
|
|
} |