mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-22 18:52:44 +01:00
a6dea8efbc
* add some mods * refactor * user friendly home page added * refactor * update readme * update readme
22 lines
457 B
C#
22 lines
457 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Model
|
|
{
|
|
[Serializable]
|
|
public class Mod
|
|
{
|
|
public string Name { get; }
|
|
public string FriendlyName { get; }
|
|
public string CommandLine { get; }
|
|
|
|
public Mod(string name, string friendlyName, string cmdLine)
|
|
{
|
|
Name = name;
|
|
FriendlyName = friendlyName;
|
|
CommandLine = cmdLine;
|
|
}
|
|
}
|
|
}
|