namespace WineTrackerWebApi.Models.Customer { public class Customer { public int CustomerId { get; set; } public int CustomerTypeId { get; set; } public string CustomerName { get; set; } public string CustomerEmail { get; set; } public string CustomerPhoneNumber { get; set; } public Models.Address.Address Address { get; set; } } }