12 lines
242 B
C#
12 lines
242 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Moonlight.App.ApiClients.Wings.Requests;
|
|
|
|
public class CompressFiles
|
|
{
|
|
[JsonProperty("root")]
|
|
public string Root { get; set; }
|
|
|
|
[JsonProperty("files")]
|
|
public string[] Files { get; set; }
|
|
} |