Skip to content

Instantly share code, notes, and snippets.

@samueleresca
Last active February 7, 2022 14:25
Show Gist options
  • Save samueleresca/f82b239b55479d1e0269 to your computer and use it in GitHub Desktop.
Save samueleresca/f82b239b55479d1e0269 to your computer and use it in GitHub Desktop.
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