vassago/Models/ErrorPageViewModel.cs
2023-07-03 12:51:23 -04:00

9 lines
182 B
C#

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