You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
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; }
} }
|