mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-28 20:04:56 +00:00
23 lines
440 B
C#
23 lines
440 B
C#
|
|
|
|
using System;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
{
|
|
/// <summary>
|
|
/// Represents a MeetingEventArgs
|
|
/// </summary>
|
|
public class MeetingEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the ChangeType
|
|
/// </summary>
|
|
public eMeetingEventChangeType ChangeType { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the Meeting
|
|
/// </summary>
|
|
public Meeting Meeting { get; set; }
|
|
}
|
|
|
|
}
|