Moved paper api client
This commit is contained in:
18
Moonlight/App/ApiClients/Paper/Resources/PaperBuilds.cs
Normal file
18
Moonlight/App/ApiClients/Paper/Resources/PaperBuilds.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user