source:
WineTrackerFinal/WineTrackerWebApi/Models/Customer/Customer.cs
Last change on this file was 17d6948, checked in by , 6 days ago | |
---|---|
|
|
File size: 397 bytes |
Rev | Line | |
---|---|---|
[17d6948] | 1 | namespace WineTrackerWebApi.Models.Customer |
2 | { | |
3 | public class Customer | |
4 | { | |
5 | public int CustomerId { get; set; } | |
6 | public int CustomerTypeId { get; set; } | |
7 | public string CustomerName { get; set; } | |
8 | public string CustomerEmail { get; set; } | |
9 | public string CustomerPhoneNumber { get; set; } | |
10 | public Models.Address.Address Address { get; set; } | |
11 | } | |
12 | } |
Note:
See TracBrowser
for help on using the repository browser.