MeiRiYiCheng_1_old/YBDevice.WX/Models/ErrorViewModel.cs

12 lines
210 B
C#
Raw Normal View History

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