Initial commit

This commit is contained in:
Stone-Red-Code
2021-04-16 10:11:38 +02:00
commit 86324a7cd7
72 changed files with 13205 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace AlwaysUpToDate
{
internal class UpdateInfo
{
public string Version { get; set; }
public string FileUrl { get; set; }
public string AdditionalInformationUrl { get; set; }
public bool Mandatory { get; set; }
}
}