mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
feat: RKST-130 add IRoomEventSchedule interface
This commit is contained in:
parent
3eefd1ce36
commit
35e9e54564
1 changed files with 12 additions and 0 deletions
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();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue