source:
WineTrackerFinal/WineTrackerWebApi/Models/Address/Address.cs
Last change on this file was 17d6948, checked in by , 6 days ago | |
---|---|
|
|
File size: 307 bytes |
Line | |
---|---|
1 | namespace WineTrackerWebApi.Models.Address |
2 | { |
3 | public class Address |
4 | { |
5 | public int AddressId { get; set; } |
6 | public string City { get; set; } |
7 | public string Street { get; set; } |
8 | public string PostCode { get; set; } |
9 | public int BuildingNumber { get; set; } |
10 | } |
11 | } |
Note:
See TracBrowser
for help on using the repository browser.