PlotDirector/PlotLine/Models/ErrorViewModel.cs
2026-06-01 09:03:59 +01:00

10 lines
193 B
C#

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