Innovenergy_trunk/csharp/App/RemoteSupportConsole/VrmProxy.cs

6 lines
219 B
C#
Raw Normal View History

namespace InnovEnergy.App.RemoteSupportConsole;
2023-02-16 12:57:06 +00:00
public readonly record struct VrmProxy(IDisposable Connection, String User, String Host, String Port) : IDisposable
{
public void Dispose() => Connection.Dispose();
}