Files
isn/Models/ErrorViewModel.cs
Paul Schneider 3b7e286a5b initial import
2021-04-08 02:03:17 +01:00

11 lines
218 B
C#

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