main
Last change
on this file since 17d6948 was 17d6948, checked in by Nikola Mishevski <Nikola.Mishevski@…>, 6 days ago |
initial commit WineTracker Project
|
-
Property mode
set to
100644
|
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.