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

15 lines
332 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MaksIT.PodmanClientDotNet.Models {
public class OverlayVolume {
public string Destination { get; set; }
public List<string> Options { get; set; }
public string Source { get; set; }
}
}