﻿export class TfabricaDictionary {
    public key: string;
    public value: any;

    constructor(key, value) {
        this.key = key;
        this.value = value;
    }
}