-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.cs
More file actions
26 lines (26 loc) · 739 Bytes
/
Config.cs
File metadata and controls
26 lines (26 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
namespace SshTool
{
class Config
{
public Config(int index, string label, string ssh_host, string ssh_user,
string ssh_password, string ssh_port, string app_port, string local_port)
{
this.index = index;
this.label = label;
this.ssh_host = ssh_host;
this.ssh_user = ssh_user;
this.ssh_password = ssh_password;
this.ssh_port = ssh_port;
this.app_port = app_port;
this.local_port = local_port;
}
public int index;
public string label,
ssh_host,
ssh_user,
ssh_password,
ssh_port,
app_port,
local_port;
}
}