Files
Essentials/src/PepperDash.Essentials.Core/Devices/IAttachVideoStatus.cs
2025-07-25 09:12:09 -05:00

13 lines
248 B
C#

using PepperDash.Core;
namespace PepperDash.Essentials.Core
{
/// <summary>
/// Defines the contract for IAttachVideoStatus
/// </summary>
public interface IAttachVideoStatus : IKeyed
{
// Extension methods will depend on this
}
}