Drinks: models and boilerplate

This commit is contained in:
2020-03-05 18:17:45 +01:00
parent 9735a0d5a0
commit da67b8eda2
11 changed files with 305 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System;
namespace EstusShots.Shared.Dto
{
public class Drink
{
public Guid DrinkId { get; set; }
public string Name { get; set; }
public double Vol { get; set; }
}
}