20 lines
545 B
C#
20 lines
545 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Knoks.Core.Entities
|
|
{
|
|
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; }
|
|
}
|
|
}
|