Class State
Represents a state entity.
Inherited Members
Namespace: Innovt.Domain.Adresses
Assembly: Innovt.Domain.dll
Syntax
public class State : ValueObject
Properties
| Edit this page View SourceAcronym
Gets or sets the acronym for the state.
Declaration
public string Acronym { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Cities
Gets or sets the list of cities within the state.
Declaration
public virtual IList<City> Cities { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<City> |
Country
Gets or sets the associated country.
Declaration
public virtual Country Country { get; set; }
Property Value
| Type | Description |
|---|---|
| Country |
CountryId
Gets or sets the country ID associated with the state.
Declaration
public int CountryId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Description
Gets or sets the description or name of the state.
Declaration
public string Description { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
UtcOffset
Gets or sets the UTC offset for the state.
Declaration
public string UtcOffset { get; set; }
Property Value
| Type | Description |
|---|---|
| string |