9 lines
178 B
C#
9 lines
178 B
C#
namespace BinaryDad.Notes.Models;
|
|
|
|
public class ErrorViewModel
|
|
{
|
|
public string? RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
}
|