mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-11 19:44:52 +00:00
16 lines
312 B
C#
16 lines
312 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// Defines a class that uses an InUseTracker
|
|
/// </summary>
|
|
public interface IInUseTracking
|
|
{
|
|
InUseTracking InUseTracker { get; }
|
|
}
|
|
} |