import { INameEntity } from "./name_entity"; /** AddressZone */ export interface IAddressZone extends INameEntity { /** Gets or sets the lower bound of latitude of the AddressZone. */ minLat: number; /** Gets or sets the lower bound of longitude of the AddressZone. */ minLong: number; } //# sourceMappingURL=address_zone.d.ts.map