10 lines
214 B
C#
Raw Normal View History

2024-04-29 13:44:53 +04:00
namespace SoftwareInstallationClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}