Moved wings api client to new location

This commit is contained in:
Marcel Baumgartner
2023-05-05 04:36:53 +02:00
parent 5a7eeb1490
commit bb272b7fc5
24 changed files with 30 additions and 26 deletions

View File

@@ -0,0 +1,30 @@
using Newtonsoft.Json;
namespace Moonlight.App.ApiClients.Wings.Resources;
public class ListDirectory
{
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("created")]
public DateTimeOffset Created { get; set; }
[JsonProperty("modified")]
public DateTimeOffset Modified { get; set; }
[JsonProperty("size")]
public long Size { get; set; }
[JsonProperty("directory")]
public bool Directory { get; set; }
[JsonProperty("file")]
public bool File { get; set; }
[JsonProperty("symlink")]
public bool Symlink { get; set; }
[JsonProperty("mime")]
public string Mime { get; set; }
}