isn/Models/ErrorViewModel.cs

11 lines
218 B
C#
Raw Normal View History

2021-04-08 02:03:17 +01:00
using System;
namespace nuget_host.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}