LANCommander/LANCommander.Server/Models/ErrorViewModel.cs

9 lines
203 B
C#
Raw Permalink Normal View History

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