This commit is contained in:
2023-04-03 21:28:10 -04:00
commit 32b26a5db3
78 changed files with 74903 additions and 0 deletions

8
Models/ErrorViewModel.cs Normal file
View File

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