podman-client-dotnet/src/PodmanClient/Models/LinuxDeviceCgroup.cs
Maksym Sadovnychyy b37342cda1 (feature): init
2024-08-17 22:11:46 +02:00

17 lines
389 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MaksIT.PodmanClientDotNet.Models {
public class LinuxDeviceCgroup {
public string Access { get; set; }
public bool Allow { get; set; }
public int Major { get; set; }
public int Minor { get; set; }
public string Type { get; set; }
}
}