mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-21 05:34:10 +02:00
13 lines
329 B
C#
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;
|
|
}
|
|
}
|
|
}
|