You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
argos/dmp-frontend/src/app/core/model/organisation/organization.ts

10 lines
166 B
TypeScript

import { Status } from "../../common/enum/status";
export interface OrganizationModel {
id: string;
name: string;
label: string;
status: Status;
tag: string;
}