mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
32 lines
624 B
C#
32 lines
624 B
C#
using System.ComponentModel;
|
|
|
|
namespace BililiveRecorder.Cli.Configure
|
|
{
|
|
public enum RootMenuSelection
|
|
{
|
|
[Description("List rooms")]
|
|
ListRooms,
|
|
|
|
[Description("Add room")]
|
|
AddRoom,
|
|
|
|
[Description("Delete room")]
|
|
DeleteRoom,
|
|
|
|
[Description("Update room config")]
|
|
SetRoomConfig,
|
|
|
|
[Description("Update global config")]
|
|
SetGlobalConfig,
|
|
|
|
[Description("Update JSON Schema")]
|
|
SetJsonSchema,
|
|
|
|
[Description("Exit and discard all changes")]
|
|
Exit,
|
|
|
|
[Description("Save and Exit")]
|
|
SaveAndExit,
|
|
}
|
|
}
|