PSTW_CentralizeSystem/Models/ErrorViewModel.cs
2024-11-14 15:14:40 +08:00

10 lines
203 B
C#

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