LANCommander/LANCommander/Models/ErrorViewModel.cs

9 lines
No EOL
196 B
C#

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