BililiveRecorder/BililiveRecorder.Cli/Configure/JsonSchemaSelection.cs

14 lines
270 B
C#
Raw Normal View History

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