GrasscutterCommandGenerator/Source/GrasscutterTools/Events/CommandGeneratedEventArgs.cs
筱傑 a055dc5299 Framework changed to WPF
Only the basic window frame is implemented.
Adjusted the structure of resource files.
2022-09-29 21:56:43 +08:00

15 lines
281 B
C#

using System;
namespace GrasscutterTools.Events
{
public class CommandGeneratedEventArgs : EventArgs
{
public CommandGeneratedEventArgs(string command = "")
{
Command = command;
}
public string Command { get; set; }
}
}