BililiveRecorder/BililiveRecorder.Cli/Configure/JsonSchemaSelection.cs
2022-06-07 18:35:46 +08:00

14 lines
306 B
C#

using System.ComponentModel;
namespace BililiveRecorder.Cli.Configure
{
public enum JsonSchemaSelection
{
[Description("https://raw.githubusercontent.com/BililiveRecorder/BililiveRecorder/dev/configV3.schema.json")]
Default,
[Description("Custom")]
Custom
}
}