mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 16:44:49 +00:00
24 lines
538 B
C#
24 lines
538 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PckStudio.Core.Json
|
|
{
|
|
internal class UpdateInformation
|
|
{
|
|
[JsonProperty("version")]
|
|
public string Version { get; set; }
|
|
|
|
[JsonProperty("url")]
|
|
public string Url { get; set; }
|
|
|
|
[JsonProperty("changelog")]
|
|
public string Changelog { get; set; }
|
|
|
|
[JsonProperty("mandatory")]
|
|
public bool Mandatory { get; set; }
|
|
}
|
|
} |