15 lines
452 B
C#
15 lines
452 B
C#
namespace Knoks.Api.Client.Invoker
|
|
{
|
|
public class Country
|
|
{
|
|
public int CountryId { get; set; }
|
|
public string CountryName { get; set; }
|
|
public string CountryDesc { get; set; }
|
|
public short RegionId { get; set; }
|
|
public string CountrySymbol { get; set; }
|
|
public string CountryCode { get; set; }
|
|
public string NumCode { get; set; }
|
|
public string PhonePrefix { get; set; }
|
|
}
|
|
}
|