13 lines
333 B
C#
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; }
|
|
}
|
|
}
|