1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-21 05:34:10 +02:00
TweetDuck/lib/TweetLib.Core/Features/Plugins/Events/PluginDispatchEventArgs.cs

13 lines
329 B
C#

using System;
using TweetLib.Core.Browser;
namespace TweetLib.Core.Features.Plugins.Events{
public sealed class PluginDispatchEventArgs : EventArgs{
public IScriptExecutor Executor { get; }
public PluginDispatchEventArgs(IScriptExecutor executor){
this.Executor = executor;
}
}
}