10Г Егор Романов 78ddde117f big fixes with repository lab5
2023-05-01 16:55:27 +04:00

9 lines
207 B
C#

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