fix old/wrong namespace versions

This commit is contained in:
Andrew Welker
2021-03-12 15:46:08 -07:00
parent 9c7e38b379
commit 4a9b1514e3
14 changed files with 1274 additions and 27 deletions

View File

@@ -27,15 +27,20 @@ namespace PepperDash.Essentials.Core
namespace PepperDash_Essentials_Core
{
[Obsolete("Use PepperDash.Essentials.Core")]
public class IsReadyEventArgs : PepperDash.Essentials.Core.IsReadyEventArgs
public class IsReadyEventArgs : EventArgs
{
public IsReadyEventArgs(bool data) : base(data)
public bool IsReady { get; set; }
public IsReadyEventArgs(bool data)
{
IsReady = data;
}
}
[Obsolete("Use PepperDash.Essentials.Core")]
public interface IHasReady: PepperDash.Essentials.Core.IHasReady
public interface IHasReady
{
event EventHandler<IsReadyEventArgs> IsReadyEvent;
bool IsReady { get; }
}
}