source:
WineTrackerFinal/WineTrackerWebApi/Models/Wine/Wine.cs
Last change on this file was 17d6948, checked in by , 6 days ago | |
---|---|
|
|
File size: 415 bytes |
Line | |
---|---|
1 | using System.ComponentModel.DataAnnotations.Schema; |
2 | |
3 | namespace WineTrackerWebApi.Models.Wine |
4 | { |
5 | public class Wine |
6 | { |
7 | public int WineId { get; set; } |
8 | public int WineTypeId { get; set; } |
9 | public string WineName { get; set; } |
10 | public string WineTypeName { get; set; } |
11 | public int WineBasePrice { get; set; } |
12 | public string WineYearProduced { get; set; } |
13 | } |
14 | } |
Note:
See TracBrowser
for help on using the repository browser.