mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 20:19:34 +08:00
8 lines
201 B
C#
8 lines
201 B
C#
namespace Milimoe.FunGame.Core.Library.Common.Event
|
|
{
|
|
public class SendTalkEventArgs(string message = "") : GeneralEventArgs
|
|
{
|
|
public string Message { get; set; } = message;
|
|
}
|
|
}
|