Files
Web_IoTBase_Sever_Prod/看板定阅/Models/ErrorViewModel.cs

10 lines
197 B
C#
Raw Normal View History

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