Files
FarmMapsLib/projects/common/src/fm/models/user.ts
Willem Dantuma f9d0e2aee0
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
Implemented hasclaim directive
2020-06-23 17:51:47 +02:00

7 lines
100 B
TypeScript

export interface IUser {
code?: string;
name?: string;
email?: string;
claims: any;
}