PhoneToolMX/PhoneToolMX.Models/Models/ErrorViewModel.cs
2023-10-17 21:55:10 -07:00

9 lines
181 B
C#

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