12 lines
240 B
C#
12 lines
240 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Moonlight.App.Models.Wings.Requests;
|
|
|
|
public class CreateDirectory
|
|
{
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonProperty("path")]
|
|
public string Path { get; set; }
|
|
} |