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