namespace WineTrackerWebApi.Models.Customer { public class CustomerDetails { public int CustomerId { get; set; } public int AddressId { get; set; } public string CustomerTypeName { get; set; } public string CustomerName { get; set; } public string CustomerEmail { get; set; } public string CustomerPhoneNumber { get; set; } public string CustomerAddress { get; set; } } }