mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-24 18:04:57 +00:00
28 lines
595 B
C#
28 lines
595 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
using Crestron.SimplSharpPro;
|
|
using Crestron.SimplSharpPro.DeviceSupport;
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
|
|
public enum AudioChangeType
|
|
{
|
|
Mute, Volume
|
|
}
|
|
|
|
public class AudioChangeEventArgs
|
|
{
|
|
public AudioChangeType ChangeType { get; private set; }
|
|
public IBasicVolumeControls AudioDevice { get; private set; }
|
|
|
|
public AudioChangeEventArgs(IBasicVolumeControls device, AudioChangeType changeType)
|
|
{
|
|
ChangeType = changeType;
|
|
AudioDevice = device;
|
|
}
|
|
}
|
|
} |