Add project files.

This commit is contained in:
Ryan Peters
2022-11-29 10:14:15 -05:00
parent dbc1518c89
commit 36f469b9fd
33 changed files with 14596 additions and 0 deletions

8
Models/ErrorViewModel.cs Normal file
View File

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