Notes/Models/ErrorViewModel.cs

9 lines
178 B
C#
Raw Normal View History

2022-11-29 15:14:15 +00:00
namespace BinaryDad.Notes.Models;
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}