import { DomainObject } from "./domain-object"; import { PriceUnit, PriceType } from "./all.enum"; import { Currency } from "./currency"; import { TimeCategory } from "./time-category"; import { Customer } from "./customer"; import { Project } from "./project"; import { Employee } from "./employee"; export declare class PriceConfig extends DomainObject { ConfigId?: string | undefined; Price?: number | undefined; Unit?: PriceUnit | undefined; PriceType?: PriceType | undefined; CurrencyId?: string | undefined; Currency?: Currency | undefined; TimeCategoryId?: string | undefined; TimeCategory?: TimeCategory | undefined; CustomerId?: string | undefined; Customer?: Customer | undefined; ProjectId?: string | undefined; Project?: Project | undefined; EmployeeId?: string | undefined; Employee?: Employee | undefined; } //# sourceMappingURL=price-config.d.ts.map