ISEbd-21_Chegodaev_A.Y._Law.../LawFirm/LawFirmClientApp/Models/ErrorViewModel.cs
aleksandr chegodaev ab11fb02d6 lab5
2024-05-11 00:23:02 +04:00

10 lines
201 B
C#

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