namespace MaksIT.PodmanClientDotNet.Models; /// /// Libpod container or image specification model (Block I O). /// public class BlockIO { public int LeafWeight { get; set; } public List? ThrottleReadBpsDevice { get; set; } public List? ThrottleReadIopsDevice { get; set; } public List? ThrottleWriteBpsDevice { get; set; } public List? ThrottleWriteIopsDevice { get; set; } public int Weight { get; set; } public List? WeightDevice { get; set; } }