Files
Servers/MoonlightServers.DaemonShared/Http/Responses/Statistics/StatisticsDockerResponse.cs

15 lines
443 B
C#

namespace MoonlightServers.DaemonShared.Http.Responses.Statistics;
public class StatisticsDockerResponse
{
public string Version { get; set; }
public long ImagesUsed { get; set; }
public long ImagesReclaimable { get; set; }
public long ContainersUsed { get; set; }
public long ContainersReclaimable { get; set; }
public long BuildCacheUsed { get; set; }
public long BuildCacheReclaimable { get; set; }
}