using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entity.ShowEasyDtos
{
public class RegionDTO
{
///
///
///
public string RegionID { get; set; }
///
///
///
public string RegionName { get; set; }
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public List CountryList = new List();
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public Dictionary CountryDic = new Dictionary();
}
}