Files
Moonlight/Moonlight/App/ApiClients/Daemon/Requests/Mount.cs
2023-06-07 02:46:26 +02:00

8 lines
215 B
C#

namespace Moonlight.App.ApiClients.Daemon.Requests;
public class Mount
{
public string Server { get; set; } = "";
public string ServerPath { get; set; } = "";
public string Path { get; set; } = "";
}