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

18 lines
434 B
C#

using Newtonsoft.Json;
namespace Moonlight.App.ApiClients.Paper.Resources;
public class PaperVersions
{
[JsonProperty("project_id")]
public string ProjectId { get; set; }
[JsonProperty("project_name")]
public string ProjectName { get; set; }
[JsonProperty("version_groups")]
public List<string> VersionGroups { get; set; }
[JsonProperty("versions")]
public List<string> Versions { get; set; }
}