export class HistoryItemState {
    value: any;
    id: string;
    constructor(id: string, value: any) {
        this.id = id;
        this.value = value;
    }
}
