namespace RhythmBase.Events
{
///
/// Represents an event to reorder rooms.
///
public class ReorderRooms : BaseEvent
{
///
/// Initializes a new instance of the class.
///
public ReorderRooms()
{
Type = EventType.ReorderRooms;
Tab = Tabs.Rooms;
}
///
/// Gets or sets the order of the rooms.
///
public List Order { get; set; } = [];
///
/// Gets the type of the event.
///
public override EventType Type { get; }
///
/// Gets the tab associated with the event.
///
public override Tabs Tab { get; }
}
}