mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2026-04-05 14:25:37 +00:00
9 lines
No EOL
183 B
C#
9 lines
No EOL
183 B
C#
namespace Northwind.Mvc.Models
|
|
{
|
|
public class ErrorViewModel
|
|
{
|
|
public string? RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
}
|
|
} |