LANCommander/Models/ErrorViewModel.cs
2023-01-02 15:44:04 -06:00

9 lines
No EOL
196 B
C#

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