mirror of
https://github.com/MAKS-IT-COM/podman-client-dotnet.git
synced 2026-08-16 15:18:10 +02:00
13 lines
310 B
C#
13 lines
310 B
C#
|
|
namespace MaksIT.PodmanClientDotNet.Models;
|
|
|
|
/// <summary>
|
|
/// Libpod container or image specification model (Weight Device).
|
|
/// </summary>
|
|
|
|
public class WeightDevice {
|
|
public int LeafWeight { get; set; }
|
|
public int Major { get; set; }
|
|
public int Minor { get; set; }
|
|
public int Weight { get; set; }
|
|
} |