mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-06 08:16:11 +00:00
18 lines
413 B
C#
18 lines
413 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Essentials.Core;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
{
|
|
/// <summary>
|
|
/// Defines minimum volume controls for a codec device with dialing capabilities
|
|
/// </summary>
|
|
public interface ICodecAudio : IBasicVolumeWithFeedback, IPrivacy
|
|
{
|
|
|
|
}
|
|
} |