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

8
Models/FreezerDto.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace ThuisApi.Models;
public class FreezerDto
{
public int FreezerId { get; set; }
public string Location { get; set; }
public int AmountInFreezer { get; set; }
}