Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
user-ro.model.ts 219 B
Newer Older
import {SearchTableEntity} from "../common/search-table/search-table-entity.model";

export interface UserRo extends SearchTableEntity {
  userName: string;
  password?: string;
  role: string;
  suspended?: boolean;