source: WineTrackerFinal/WineTrackerWebApi/Models/Customer/CustomerDetails.cs

main
Last change on this file was 17d6948, checked in by Nikola Mishevski <Nikola.Mishevski@…>, 6 days ago

initial commit WineTracker Project

  • Property mode set to 100644
File size: 443 bytes
Line 
1namespace WineTrackerWebApi.Models.Customer
2{
3 public class CustomerDetails
4 {
5 public int CustomerId { get; set; }
6 public int AddressId { get; set; }
7 public string CustomerTypeName { get; set; }
8 public string CustomerName { get; set; }
9 public string CustomerEmail { get; set; }
10 public string CustomerPhoneNumber { get; set; }
11 public string CustomerAddress { get; set; }
12 }
13}
Note: See TracBrowser for help on using the repository browser.