NBloodServerSupervisor/Model/Mod.cs
CommonLoon102 a6dea8efbc
Mods and home page (#3)
* add some mods

* refactor

* user friendly home page added

* refactor

* update readme

* update readme
2020-01-27 12:23:00 +00:00

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;
}
}
}