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

15 lines
275 B
TypeScript
Raw Normal View History

2019-01-18 18:03:45 +01:00
import { AppRole } from "../../common/enum/app-role";
export interface UserListingModel {
id: String;
name: String;
2020-04-10 16:16:37 +02:00
email: string;
2019-01-18 18:03:45 +01:00
appRoles: AppRole[];
2020-04-10 16:16:37 +02:00
associatedDmps: any[];
2020-07-17 12:19:10 +02:00
language: any;
culture: any;
timezone: String;
zenodoEmail: String;
avatarUrl: String;
2019-01-18 18:03:45 +01:00
}