using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Entity.ShowEasyDtos { public class AddressDTO { public string AddressID { get; set; } public string Account { get; set; } public RegionDTO Region = new RegionDTO(); public CountryDTO Country = new CountryDTO(); public string StateName { get; set; } public CityDTO City = new CityDTO(); public string Street1 { get; set; } public string Street2 { get; set; } public string ZipCode { get; set; } } }