Moved wings api client to new location
This commit is contained in:
20
Moonlight/App/ApiClients/Wings/Requests/RenameFiles.cs
Normal file
20
Moonlight/App/ApiClients/Wings/Requests/RenameFiles.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Moonlight.App.ApiClients.Wings.Requests;
|
||||
|
||||
public class RenameFiles
|
||||
{
|
||||
[JsonProperty("root")]
|
||||
public string Root { get; set; }
|
||||
|
||||
[JsonProperty("files")] public RenameFilesData[] Files { get; set; }
|
||||
}
|
||||
|
||||
public class RenameFilesData
|
||||
{
|
||||
[JsonProperty("from")]
|
||||
public string From { get; set; }
|
||||
|
||||
[JsonProperty("to")]
|
||||
public string To { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user