Files

10 lines
203 B
C#
Raw Permalink Normal View History

2025-11-20 09:56:11 +08:00
namespace AutoNotificatPhone.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}