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