Files
Aberwyn/Nevyn/Models/ShoppingList.cs
2023-01-29 12:04:01 +01:00

21 lines
491 B
C#

namespace Nevyn.Models
{
public class ShoppingList
{
public long Id { get; set; }
public int Amount { get; set; }
public string? Name { get; set; }
public bool IsComplete { get; set; }
public string? Secret { get; set; }
}
public class ShoppingListDTO
{
public long Id { get; set; }
public int Amount { get; set; }
public string? Name { get; set; }
public bool IsComplete { get; set; }
}
}