artifacts/oci/dotnetcore-app/Models/ErrorViewModel.cs

11 lines
204 B
C#
Raw Permalink Normal View History

2023-04-23 11:19:17 +08:00
using System;
namespace MvcApp.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}