mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 19:34:51 +00:00
feat: RKST-130 add IRoomEventSchedule interface
This commit is contained in:
12
src/PepperDash.Essentials.Core/Room/IRoomEventSchedule.cs
Normal file
12
src/PepperDash.Essentials.Core/Room/IRoomEventSchedule.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using PepperDash.Essentials.Room.Config;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace PepperDash.Essentials.Core.Room
|
||||
{
|
||||
public interface IRoomEventSchedule
|
||||
{
|
||||
void AddOrUpdateScheduledEvent(ScheduledEventConfig eventConfig);
|
||||
|
||||
List<ScheduledEventConfig> GetScheduledEvents();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user