1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-17 09:42:45 +02:00
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;
}
}
}