15 lines
454 B
C#
15 lines
454 B
C#
namespace MoonlightServers.DaemonShared.DaemonSide.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; }
|
|
} |