no message

This commit is contained in:
Diamantis Tziotzios 2018-01-17 12:11:58 +02:00
parent 694807623b
commit eab18999ec
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
import { Serializable } from "../Serializable";
export class ExternalDatasetModel implements Serializable<ExternalDatasetModel> {
public abbreviation: String;
public id: String;
public label: String;
public reference: String;
fromJSONObject(item: any): ExternalDatasetModel {
this.abbreviation = item.abbreviation;
this.id = item.id;
this.label = item.label;
this.reference = item.reference;
return this;
}
}