ntk-cms-api
Version:
Ntk Cms Api And Model For Typscript
30 lines (29 loc) • 1.07 kB
TypeScript
import { EstatePropertyExpertPriceTypeEnum } from '../../enums/estate/estatePropertyExpertPriceTypeEnum';
import { BaseModuleEntity } from '../base/baseModuleEntity';
export declare class EstatePropertyExpertPriceModel extends BaseModuleEntity<string> {
expertPriceType: EstatePropertyExpertPriceTypeEnum;
description: string;
linkLocationId: number;
linkLocationCountryId: number;
linkLocationCountryIdTitle: string;
linkLocationIdTitle: string;
linkLocationIdParentTitle: string;
linkPropertyTypeUsageId: string;
linkPropertyTypeLanduseId: string;
linkContractTypeId: string;
linkCoreCurrencyId: number;
createdYaer?: number;
countRow: number;
salePriceMin: number;
salePriceMax: number;
salePriceAverage: number;
rentPriceMin: number;
rentPriceMax: number;
rentPriceAverage: number;
depositPriceMin: number;
depositPriceMax: number;
depositPriceAverage: number;
periodPriceMin: number;
periodPriceMax: number;
periodPriceAverage: number;
}