LANCommander.PlaynitePlugin/LANCommander/Models/ErrorViewModel.cs

9 lines
196 B
C#
Raw Normal View History

2023-01-02 15:44:04 -06:00
namespace LANCommander.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}