Files
Servers/MoonlightServers.DaemonShared/Http/Responses/Sys/SystemDataUsageResponse.cs

11 lines
384 B
C#

namespace MoonlightServers.DaemonShared.Http.Responses.Sys;
public class SystemDataUsageResponse
{
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; }
}