Files
Moonlight/Moonlight/App/ApiClients/Paper/Resources/PaperBuilds.cs
Marcel Baumgartner 0fc2a06db5 Moved paper api client
2023-05-05 04:42:07 +02:00

18 lines
409 B
C#

using Newtonsoft.Json;
namespace Moonlight.App.ApiClients.Paper.Resources;
public class PaperBuilds
{
[JsonProperty("project_id")]
public string ProjectId { get; set; }
[JsonProperty("project_name")]
public string ProjectName { get; set; }
[JsonProperty("version")]
public string Version { get; set; }
[JsonProperty("builds")]
public List<string> Builds { get; set; }
}