Files
Server-Dashboard/Server Dashboard/DashboardModules/DashboardModule.cs
Rene Schwarz 488494c273 init commit
2021-04-01 15:15:09 +02:00

16 lines
405 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Server_Dashboard {
class DashboardModule {
public string Name { get; set; }
public string Creator { get; set; }
public DateTime Uptime { get; set; }
public ModuleItem ModuleItem { get; set; }
public DashboardModule() {
ModuleItem = new ModuleItem();
}
}
}