Moved paper api client

This commit is contained in:
Marcel Baumgartner
2023-05-05 04:42:07 +02:00
parent 3a47a67ec4
commit 0fc2a06db5
6 changed files with 7 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
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; }
}