feat (essentials): wip to move interfaces to their own folder/namespace

This commit is contained in:
Nick Genovese
2022-03-21 10:53:11 -04:00
parent 2f179ea190
commit 65d54f89ea
118 changed files with 526 additions and 464 deletions

View File

@@ -0,0 +1,17 @@
using PepperDash.Essentials.Core.Devices;
namespace PepperDash.Essentials.Core.Interfaces
{
public interface IUsageTracking
{
UsageTracking UsageTracker { get; set; }
}
//public static class IUsageTrackingExtensions
//{
// public static void EnableUsageTracker(this IUsageTracking device)
// {
// device.UsageTracker = new UsageTracking();
// }
//}
}