Interface IAddressDistrict
- Namespace
- XENBIT.ResQueServe.Abstractions.Interfaces
- Assembly
- RQS.Abstractions.dll
Represents a district within a city, including detailed geographic and administrative data. This record extends the IAddressCity and provides additional details specific to the district level, such as the district's unique identifier, name, postal code, geographic coordinates, and optional phone prefix.
public interface IAddressDistrict : IAddressCity, IAddressCommune, IAddressState
- Inherited Members
Properties
DistrictCoordinates
Coordinates DistrictCoordinates { get; }
Property Value
DistrictId
int DistrictId { get; set; }
Property Value
DistrictLat
The latitude coordinate of the district. This geographic detail supports mapping and location-based services. If the specific street coordinates are not available, these coordinates serve as a fallback location.
double DistrictLat { get; set; }
Property Value
DistrictLng
The longitude coordinate of the district. Alongside latitude, this provides a precise location for the district on global mapping services. Like latitude, longitude will also be used as a fallback if specific street coordinates cannot be found.
double DistrictLng { get; set; }
Property Value
DistrictName
The name of the district.
string DistrictName { get; set; }
Property Value
DistrictPhonePrefix
The phone prefix used within the district. This property can be null if the phone prefix is not applicable or not defined.
string? DistrictPhonePrefix { get; set; }
Property Value
DistrictZip
The postal code for the district.
string DistrictZip { get; set; }