Skip to content
Snippets Groups Projects
Commit f1a71104 authored by ncastejon's avatar ncastejon
Browse files

Add ILink interface for organization model

parent 6ec9f422
Branches
Tags 1.2.1
No related merge requests found
......@@ -2,15 +2,22 @@ export interface IOrganization {
id: number;
name: string;
description: string;
links: string[];
links: ILink[];
logo: string;
}
interface ILink {
id: number;
name: string;
url: string;
organizationId: number;
}
export class Organization implements IOrganization {
id: number;
name: string;
description: string;
links: string[];
links: ILink[];
logo: string;
datasetsCount?: number;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment