Files
Server-Dashboard/Server Dashboard/DashboardModules/NewModuleInformation.cs
2021-08-05 15:29:27 +02:00

13 lines
333 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Server_Dashboard.DashboardModules {
class NewModuleInformation {
public string ServerName { get; set; }
public string Username { get; set; }
public string IPAdress { get; set; }
public int Port { get; set; }
}
}