Class CountryDTO
Represents a country.
Inherited Members
Namespace: Integration.DataContracts
Syntax
[DataContract]
public class CountryDTO
Properties
CountryID
The unique identifier of the country
Declaration
[DataMember(IsRequired = true)]
public int CountryID { get; set; }
Property Value
Type | Description |
---|---|
int | The unique identifier of the country. |
CountryText
The country name.
Declaration
[DataMember(IsRequired = true)]
public string CountryText { get; set; }
Property Value
Type | Description |
---|---|
string | The country name. |