Skip to content

CoordinateMapping

Namespace: Database.EntityFramework.Models

Stores geographic coordinates associated with postalcodes, including the time the mapping was used.

public class CoordinateMapping

Inheritance ObjectCoordinateMapping

Properties

LastUsed

Gets or sets the time the postalcode was last entered by the user.

public Nullable<DateTime> LastUsed { get; set; }

Property Value

Nullable<DateTime>

Latitude

Gets or sets the latitude for the location.

public double Latitude { get; set; }

Property Value

Double

Location

Gets or sets the name of the location.

public string Location { get; set; }

Property Value

String

LockedUntil

Gets or sets the time until which the entry is locked.

public Nullable<DateTime> LockedUntil { get; set; }

Property Value

Nullable<DateTime>

Longitude

Gets or sets the longitude of the location.

public double Longitude { get; set; }

Property Value

Double

PostalCode

Gets or sets the postalcode which is also the uniqe identifier.

public int PostalCode { get; set; }

Property Value

Int32

Constructors

CoordinateMapping()

public CoordinateMapping()