9 lines
205 B
C#
Raw Normal View History

2023-03-26 19:05:49 +04:00
namespace PizzeriaShowClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}