no message
This commit is contained in:
parent
694807623b
commit
eab18999ec
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue