mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-12 11:15:08 +00:00
28 lines
732 B
C#
28 lines
732 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
using PepperDash.Essentials.Core;
|
|
|
|
using PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
|
{
|
|
public class ShareInfoEventArgs : EventArgs
|
|
{
|
|
public zStatus.Sharing SharingStatus { get; private set; }
|
|
|
|
public ShareInfoEventArgs(zStatus.Sharing status)
|
|
{
|
|
SharingStatus = status;
|
|
}
|
|
}
|
|
|
|
public interface IZoomWirelessShareInstructions
|
|
{
|
|
event EventHandler<ShareInfoEventArgs> ShareInfoChanged;
|
|
|
|
zStatus.Sharing SharingState { get; }
|
|
}
|
|
} |