1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-07-26 22:59:02 +02:00
TweetDuck/Plugins/Events/PluginErrorEventArgs.cs

15 lines
333 B
C#

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