NonInventPurchasingSystem/CPRNIMS.WebApps/Models/ErrorViewModel.cs
2026-01-20 07:44:30 +08:00

10 lines
200 B
C#

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