ci & admin & auth & cli

This commit is contained in:
Paul Schneider 2021-06-18 23:57:02 +01:00
commit 5cb35f54d5
12 changed files with 143 additions and 34 deletions

View file

@ -0,0 +1,11 @@
using System;
namespace nuget_host.Data
{
public class NewReleaseInfo
{
public string Version { get; set; }
public string ChangeLog { get; set; }
public DateTime BuildDate { get; set; }
}
}