Initial commit

This commit is contained in:
2023-01-30 09:20:18 +01:00
commit 1b43dd3109
17 changed files with 662 additions and 0 deletions

11
Models/FreezerItemDto.cs Normal file
View File

@@ -0,0 +1,11 @@
namespace ThuisApi.Models;
public class FreezerItemDto
{
public int FreezerItemId { get; set; }
public string Item { get; set; }
public int Amount { get; set; }
public int Drawer { get; set; }
public string DateTimeAdded { get; set; }
public int FreezerId { get; set; }
}