mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 11:24:55 +00:00
18 lines
388 B
C#
18 lines
388 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Essentials.Core.Fusion
|
|
{
|
|
public class ScheduleChangeEventArgs : EventArgs
|
|
{
|
|
public RoomSchedule Schedule { get; set; }
|
|
}
|
|
|
|
public class MeetingChangeEventArgs : EventArgs
|
|
{
|
|
public Event Meeting { get; set; }
|
|
}
|
|
} |