Correct Models Unit and Category

This commit is contained in:
Francesco D'Amico
2025-03-18 13:54:37 +01:00
parent 36e107d48e
commit 45702aa4f2
36 changed files with 368 additions and 18 deletions
@@ -0,0 +1,9 @@
namespace Francesco.Recipes.World.Data.Repository
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}