mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-27 04:33:29 +08:00
14 lines
270 B
C#
14 lines
270 B
C#
|
using System.ComponentModel;
|
||
|
|
||
|
namespace BililiveRecorder.Cli.Configure
|
||
|
{
|
||
|
public enum JsonSchemaSelection
|
||
|
{
|
||
|
[Description("https://raw.githubusercontent.com/.../config.schema.json")]
|
||
|
Default,
|
||
|
|
||
|
[Description("Custom")]
|
||
|
Custom
|
||
|
}
|
||
|
}
|