export class NtsOption {
    value;
    label;
    sublabel;
    obj;
    constructor(obj: Object) {
        Object.assign(this, obj);
    }
}
