mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
14 lines
302 B
C#
14 lines
302 B
C#
using System.ComponentModel;
|
|
|
|
namespace BililiveRecorder.Cli.Configure
|
|
{
|
|
public enum JsonSchemaSelection
|
|
{
|
|
[Description("https://raw.githubusercontent.com/Bililive/BililiveRecorder/dev-1.3/configV2.schema.json")]
|
|
Default,
|
|
|
|
[Description("Custom")]
|
|
Custom
|
|
}
|
|
}
|