podman-client-dotnet/src/PodmanClient/Models/LinuxIntelRdt.cs
2026-07-28 22:30:11 +02:00

15 lines
378 B
C#

namespace MaksIT.PodmanClientDotNet.Models;
/// <summary>
/// Libpod container or image specification model (Linux Intel Rdt).
/// </summary>
public class LinuxIntelRdt {
public string? ClosID { get; set; }
public bool EnableCMT { get; set; }
public bool EnableMBM { get; set; }
public string? L3CacheSchema { get; set; }
public string? MemBwSchema { get; set; }
}