1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-08-16 06:31:42 +02:00
Files
Configuration
Core
Data
Plugins
Controls
Enums
Events
PluginChangedStateEventArgs.cs
PluginErrorEventArgs.cs
IPluginConfig.cs
Plugin.cs
PluginBridge.cs
PluginLoader.cs
PluginManager.cs
PluginScriptGenerator.cs
Properties
Resources
Updates
bld
lib
subprocess
video
.gitattributes
.gitignore
LICENSE.md
Program.cs
README.md
Reporter.cs
TweetDuck.csproj
TweetDuck.sln
TweetDuck.sln.DotSettings
packages.config
TweetDuck/Plugins/Events/PluginErrorEventArgs.cs
2017-08-28 18:46:14 +02:00

15 lines
348 B
C#

using System;
using System.Collections.Generic;
namespace TweetDuck.Plugins.Events{
sealed class PluginErrorEventArgs : EventArgs{
public bool HasErrors => Errors.Count > 0;
public IList<string> Errors { get; }
public PluginErrorEventArgs(IList<string> errors){
this.Errors = errors;
}
}
}