namespace RhythmBase.Events
{
///
/// Represents an abstract base class for beat actions in a rhythm-based application.
///
public abstract class BaseBeat : BaseRowAction
{
///
/// Initializes a new instance of the class and sets the Tab property to Rows.
///
protected BaseBeat() { }
///
/// Gets the tab associated with the beat action, which is always set to Rows.
///
public override Tabs Tab { get; } = Tabs.Rows;
}
}