mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-08 23:19:14 +08:00
11 lines
206 B
C#
11 lines
206 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace GrasscutterTools.Events
|
|
{
|
|
public class ListChangedEventArgs : EventArgs
|
|
{
|
|
public IEnumerable<string> List { get; set; }
|
|
}
|
|
}
|