mirror of
https://github.com/excaliburpartners/OmniLinkBridge
synced 2025-05-06 17:13:11 +00:00
12 lines
231 B
C#
12 lines
231 B
C#
using HAI_Shared;
|
|
using System;
|
|
|
|
namespace OmniLinkBridge.OmniLink
|
|
{
|
|
public class AudioZoneStatusEventArgs : EventArgs
|
|
{
|
|
public ushort ID { get; set; }
|
|
public clsAudioZone AudioZone { get; set; }
|
|
}
|
|
}
|