aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/services/utils/serializable.ts
blob: f8be120613b2bc6103542c2c796ec30cb335cf95 (plain)
1
2
3
4
5
6
/**
 * Created by ob0695 on 4/26/2017.
 */
export interface Serializable<T> {
    deserialize(input: Object): T;
}