LANCommander/LANCommander.Server/Models/ErrorViewModel.cs
2024-08-04 18:44:33 -05:00

9 lines
No EOL
203 B
C#

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