Notes/Models/ErrorViewModel.cs
2022-11-29 10:14:15 -05:00

9 lines
178 B
C#

namespace BinaryDad.Notes.Models;
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}