Innovenergy_trunk/csharp/App/RemoteSupportConsole/VrmProxy.cs

6 lines
219 B
C#

namespace InnovEnergy.App.RemoteSupportConsole;
public readonly record struct VrmProxy(IDisposable Connection, String User, String Host, String Port) : IDisposable
{
public void Dispose() => Connection.Dispose();
}