argos/dmp-frontend/src/app/core/model/user/user.ts

9 lines
152 B
TypeScript
Raw Normal View History

2019-01-18 18:03:45 +01:00
import { AppRole } from "../../common/enum/app-role";
export interface UserModel {
id: String;
name: String;
appRoles: AppRole[];
2019-05-28 09:49:09 +02:00
email: String;
2019-01-18 18:03:45 +01:00
}