mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
14 lines
306 B
C#
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
|
|
}
|
|
}
|