This commit is contained in:
Rene Schwarz
2021-08-06 12:35:46 +02:00
parent 2240d30570
commit 4828f95ebb
59 changed files with 476 additions and 829 deletions

View File

@@ -3,10 +3,19 @@ using System.Collections.Generic;
using System.Text;
namespace Server_Dashboard.DashboardModules {
/// <summary>
/// The Information the user puts into the CreateNewModule form
/// </summary>
class NewModuleInformation {
//The Name of the Module
public string ModuleName { get; set; }
//The Name of the Server
public string ServerName { get; set; }
//The Username
public string Username { get; set; }
//IPv4 Adress
public string IPAdress { get; set; }
//Port, defaults to 22
public int Port { get; set; }
}
}