9 lines
207 B
C#
Raw Normal View History

2023-05-01 16:55:27 +04:00
namespace SecuritySystemClientApp.Models
2023-05-01 14:00:18 +04:00
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}