mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2026-04-20 05:24:59 +00:00
12 lines
387 B
C#
12 lines
387 B
C#
using Milimoe.FunGame.Core.Interface.Base;
|
|
|
|
namespace Milimoe.FunGame.Core.Library.Common.Event
|
|
{
|
|
public class AddonDataRequestEventArgs(IServerModel client, string from, string target) : GeneralEventArgs
|
|
{
|
|
public IServerModel Client { get; set; } = client;
|
|
public string From { get; set; } = from;
|
|
public string Target { get; set; } = target;
|
|
}
|
|
}
|