10 lines
207 B
C#
Raw Permalink Normal View History

2024-05-02 17:46:55 +04:00
namespace ConfectioneryClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}