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

13 lines
210 B
C#

using System;
namespace EstusShots.Shared.Dto
{
public class Drink
{
public Guid DrinkId { get; set; }
public string Name { get; set; }
public double Vol { get; set; }
}
}