Last active
February 7, 2022 14:25
-
-
Save samueleresca/f82b239b55479d1e0269 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel.DataAnnotations; | |
using System.Linq; | |
using System.Web; | |
using System.Runtime.Serialization; | |
namespace Bungles.FindDrinks.Models | |
{ | |
/// | |
/// The following class describes Drink entity | |
/// | |
public class Drink | |
{ | |
[Key] | |
public int id { get; set; } | |
public string description { get; set; } | |
public string name { get; set; } | |
public decimal price { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment