GrasscutterCommandGenerator/Source/GrasscutterTools/Events/ListChangedEventArgs.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

11 lines
206 B
C#

using System;
using System.Collections.Generic;
namespace GrasscutterTools.Events
{
public class ListChangedEventArgs : EventArgs
{
public IEnumerable<string> List { get; set; }
}
}