12 lines
235 B
C#
12 lines
235 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Moonlight.App.Models.Wings.Requests;
|
|
|
|
public class DecompressFile
|
|
{
|
|
[JsonProperty("root")]
|
|
public string Root { get; set; }
|
|
|
|
[JsonProperty("file")]
|
|
public string File { get; set; }
|
|
} |