1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-09-21 14:42:47 +02:00
TweetDuck/Plugins/Events/PluginLoadEventArgs.cs

19 lines
391 B
C#

using System;
using System.Collections.Generic;
namespace TweetDck.Plugins.Events{
class PluginLoadEventArgs : EventArgs{
public bool Success{
get{
return Errors.Count == 0;
}
}
public IList<string> Errors;
public PluginLoadEventArgs(IList<string> errors){
this.Errors = errors;
}
}
}