argos/dmp-admin/src/app/models/interfaces/Serializable.ts

3 lines
73 B
TypeScript
Raw Normal View History

2017-11-27 14:35:00 +01:00
export interface Serializable<T> {
fromJSONObject(item: Object): T;
}