Files
MRCC/launcher/PCL-CE/Plain Craft Launcher 2/Modules/Updates/VersionDataModel.cs
T

10 lines
254 B
C#
Raw Normal View History

namespace PCL;
public class VersionDataModel
{
public string Changelog { get; set; }
public string Sha256 { get; set; }
public string Source { get; set; }
public int VersionCode { get; set; }
public string VersionName { get; set; }
}