mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-07 22:59:14 +08:00
15 lines
298 B
C#
15 lines
298 B
C#
namespace GrasscutterTools.Game
|
|
{
|
|
public class GameCommand
|
|
{
|
|
public GameCommand(string name, string command)
|
|
{
|
|
Name = name;
|
|
Command = command;
|
|
}
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Command { get; set; }
|
|
}
|
|
} |