mirror of
https://github.com/MAKS-IT-COM/podman-client-dotnet.git
synced 2026-08-15 06:38:10 +02:00
15 lines
378 B
C#
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; }
|
|
}
|