PhoneToolMX/PhoneToolMX.Models/Models/ErrorViewModel.cs

9 lines
181 B
C#
Raw Normal View History

2023-10-18 04:55:10 +00:00
namespace PhoneToolMX.Models;
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}