argos/dmp-frontend/src/app/core/model/organisation/organization.ts

10 lines
166 B
TypeScript
Raw Normal View History

2020-04-27 15:21:03 +02:00
import { Status } from "../../common/enum/status";
2019-01-18 18:03:45 +01:00
export interface OrganizationModel {
2019-05-13 17:41:40 +02:00
id: string;
name: string;
label: string;
2019-01-18 18:03:45 +01:00
status: Status;
tag: string;
2019-01-18 18:03:45 +01:00
}