Table of Contents

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

Coordinates

DistrictId

int DistrictId { get; set; }

Property Value

int

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

double

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

double

DistrictName

The name of the district.

string DistrictName { get; set; }

Property Value

string

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

string

DistrictZip

The postal code for the district.

string DistrictZip { get; set; }

Property Value

string