import { IEntity } from "./entity"; import { IZone } from "./zone"; import { IDevice } from "./device"; /** Couples a and a objects with a distance between them in kilometers. */ export interface ILogRecordZoneDistance extends IEntity { /** Gets or sets the date. */ dateTime?: Date; /** Gets or sets the . */ device?: IDevice; /** Gets or sets nullable Distance. */ distance?: number; /** Gets or sets . */ zone?: IZone; } //# sourceMappingURL=log_record_zone_distance.d.ts.map