MVCPostall/VCart/Models/ErrorViewModel.cs
2025-01-26 22:44:31 +00:00

9 lines
190 B
C#

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