mirror of
https://github.com/Stone-Red-Code/AlwaysUpToDate.git
synced 2026-09-06 15:56:06 +02:00
changed AdditionalInformationUrl to AdditionalInformation for more clarity
14 lines
331 B
C#
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; }
|
|
}
|
|
} |