mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
15 lines
348 B
C#
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;
|
|
}
|
|
}
|
|
}
|