/** * Created by vsliwka on 30/05/2017. */ import { TerritoryModel } from './territory.model'; import { RestrictionModel } from './restriction.model'; export declare class WorkRestrictionModel { id: number; workId: number; restriction: RestrictionModel; country: TerritoryModel; countryIsoCode: string; label: string; code: string; order: number; type: string; constructor(); fromJSON(json: any): this; } //# sourceMappingURL=work-restrictions-model.d.ts.map