2023-02-25 14:53:58 +00:00
|
|
|
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();
|
|
|
|
}
|