Class Address
The address table is meant for consolidating the way the system handles addresses by adding geospatial fields for any future mapping purposes.
Inheritance
System.Object
Address
Namespace: LymeTemplateApi.Models
Assembly: LymeTemplateApi.Models.dll
Syntax
public class Address : object
Properties
Address1
Address Line 1
Declaration
public string? Address1 { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.String> |
Address2
Address Line 2
Declaration
public string? Address2 { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.String> |
City
City name
Declaration
public string? City { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.String> |
Country
Country name
Declaration
public string? Country { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.String> |
Id
Primary Key
Declaration
public int Id { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
LatLng
Geospatial Location
Declaration
public string? LatLng { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.String> |
SkipGeocode
Indicates whether to skip geocoding during bulk data population operations.
Declaration
public bool? SkipGeocode { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
State
State / Region / Province
Declaration
public string? State { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.String> |
Zip
Postal Zip Code
Declaration
public string? Zip { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.String> |