Switched to new daemon communication

This commit is contained in:
Marcel Baumgartner
2023-06-07 02:46:26 +02:00
parent 732fbdd46a
commit 0f8946fe27
20 changed files with 197 additions and 167 deletions

View File

@@ -0,0 +1,8 @@
namespace Moonlight.App.ApiClients.Daemon.Requests;
public class Mount
{
public string Server { get; set; } = "";
public string ServerPath { get; set; } = "";
public string Path { get; set; } = "";
}