mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-31 21:34:58 +00:00
17 lines
419 B
C#
17 lines
419 B
C#
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();
|
|
// }
|
|
//}
|
|
} |