using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Entity.ShowEasyDtos { public class CountryDicDTO { //public CountryDTO Country = new CountryDTO(); public string CountryID { get; set; } public string CountryName { get; set; } [JsonIgnore] public Dictionary Cities = new Dictionary(); public List CityList = new List(); } }