Class Country
Represents a Country with Name and IsoCode
Inheritance
System.Object
Country
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.Framework.Base.Core
Assembly: Simplic.Framework.Base.dll
Syntax
public class Country
Properties
| Improve this Doc View SourceGuid
Gets or sets the guid
Declaration
public Guid Guid { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
IsoCode
Alpha-2 ISO 3166-1 code
Declaration
public string IsoCode { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsoCode_Alpha3
Alpha-3 ISO 3166-1 code
Declaration
public string IsoCode_Alpha3 { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsoCode_Numeric
Numeric ISO 3166-1 code
Declaration
public string IsoCode_Numeric { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
Gets the name of the country
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
NameGuid
Gets or sets the Guid, which represents the Name of the country
Declaration
public Guid NameGuid { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
ZipCodeLength
Gets or sets the length of the zipcode of the country
Declaration
public int? ZipCodeLength { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |