isn/src/appled/Data/NewReleaseInfo.cs

11 lines
226 B
C#
Raw Normal View History

2021-06-18 23:57:02 +01:00
using System;
namespace nuget_host.Data
{
public class NewReleaseInfo
{
public string Version { get; set; }
public string ChangeLog { get; set; }
public DateTime BuildDate { get; set; }
}
}