using Newtonsoft.Json;
using RhythmBase.Converters;
namespace RhythmBase.Events
{
///
/// Specifies the different tabs available in the RhythmBase application.
///
[JsonConverter(typeof(TabsConverter))]
public enum Tabs
{
///
/// Represents the Sounds tab.
///
Sounds,
///
/// Represents the Rows tab.
///
Rows,
///
/// Represents the Actions tab.
///
Actions,
///
/// Represents the Decorations tab.
///
Decorations,
///
/// Represents the Rooms tab.
///
Rooms,
///
/// Represents an unknown tab.
///
Unknown
}
}