ISEbd-21_KashtanovD.A.FishF.../FishFactory/APIClient/Models/ErrorViewModel.cs
2024-04-26 00:17:50 +04:00

9 lines
193 B
C#

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