Show / Hide Table of Contents

Class CountryDTO

Represents a country.

Inheritance
object
CountryDTO
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
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.

Back to top Created by Formpipe