using RhythmBase.Components; namespace RhythmBase.Events { /// /// Represents an event that occurs within a single room. /// public interface ISingleRoomEvent : IBaseEvent { /// /// Gets or sets the room associated with the event. /// RDSingleRoom Room { get; set; } } }