Add project files.
This commit is contained in:
20
Nevyn/Models/ShoppingList.cs
Normal file
20
Nevyn/Models/ShoppingList.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user