Files

10 lines
193 B
C#
Raw Permalink Normal View History

2025-12-11 14:04:39 +08:00
namespace NewCRICS.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}