namespace InnovEnergy.App.RemoteSupportConsole;

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