import { ICompanyPlatformSubscriptionVm } from "./company-platform-subscription-vm.model"; export interface ICompanyVm { guid: string; companyName?: string; created: Date; createdBy?: string; createdByGuid?: string; owner?: string; ownerGuid?: string; isActive: boolean; companyShortName?: string; street?: string; postCode?: string; city?: string; nip?: string; companyPlatformSubscription?: ICompanyPlatformSubscriptionVm; }