MVCPostall/Postall/Models/ErrorViewModel.cs
2025-01-26 22:22:36 -03:00

9 lines
190 B
C#

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