MeiRiYiCheng_1_old/Plugin/YB.DeviceStand/YB.DeviceStand.Web/Models/ErrorViewModel.cs

9 lines
202 B
C#
Raw Normal View History

2025-07-16 17:14:38 +08:00
namespace YB.DeviceStand.Web.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}