sumatube/VCart/Models/ErrorViewModel.cs
2025-03-31 00:52:54 +00:00

9 lines
190 B
C#

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