Files
Web_AutoNotificatPhone_Serv…/Models/ErrorViewModel.cs
2025-11-20 09:56:33 +08:00

10 lines
203 B
C#

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