initial import

This commit is contained in:
Paul Schneider 2021-04-08 02:03:17 +01:00
commit 3b7e286a5b
61 changed files with 23607 additions and 0 deletions

11
Models/ErrorViewModel.cs Normal file
View file

@ -0,0 +1,11 @@
using System;
namespace nuget_host.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}