PhoneToolMX/PolyProv/Models/ErrorViewModel.cs
snow flurry eff2dda7a4 Add PolyProv
Dynamic configuration for Polycom (VVX?) phones.
2023-10-20 12:58:23 -07:00

8 lines
171 B
C#

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