Files
AlwaysUpToDate/AlwaysUpToDate/UpdateInfo.cs
T
Stone-Red-Code b33364b338 changed AdditionalInformationUrl to AdditionalInformation
changed AdditionalInformationUrl to AdditionalInformation for more clarity
2021-04-16 21:08:56 +02:00

14 lines
331 B
C#

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 AdditionalInformation { get; set; }
public bool Mandatory { get; set; }
}
}