8 lines
179 B
C#
Raw Normal View History

2023-04-25 08:27:59 +04:00
namespace SushiBarStoresMvc.Models;
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}