Files
EstusShots-Net/EstusShots.Server/Models/Drink.cs
2020-03-05 18:17:45 +01:00

13 lines
225 B
C#

using System;
namespace EstusShots.Server.Models
{
public class Drink
{
public Guid DrinkId { get; set; }
public string Name { get; set; } = default!;
public double Vol { get; set; }
}
}