Files
Moonlight/Moonlight/App/ApiClients/Daemon/Resources/DiskStats.cs
Marcel Baumgartner 3a47a67ec4 Moved daemon api client
2023-05-05 04:40:38 +02:00

9 lines
244 B
C#

namespace Moonlight.App.ApiClients.Daemon.Resources;
public class DiskStats
{
public long FreeBytes { get; set; }
public string DriveFormat { get; set; }
public string Name { get; set; }
public long TotalSize { get; set; }
}