Add project files.

This commit is contained in:
thedigitaltailor
2024-02-28 15:35:49 +10:30
parent 404dc630d9
commit e6e9b2390c
99 changed files with 108255 additions and 0 deletions

9
Models/ErrorViewModel.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace rPiNVR.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}