Иван Алексеев 575def6019 5-я
2024-05-02 17:46:55 +04:00

10 lines
207 B
C#

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