aspnetcore/test/testapps/SimpleMvc/Models/ErrorViewModel.cs

11 lines
207 B
C#

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