mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
48 lines
1.2 KiB
C#
48 lines
1.2 KiB
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
#nullable enable
|
|
namespace BililiveRecorder.Core.Config.V3
|
|
{
|
|
public sealed class ConfigV3 : ConfigBase
|
|
{
|
|
public override int Version => 3;
|
|
|
|
[JsonProperty("global")]
|
|
public GlobalConfig Global { get; set; } = new GlobalConfig();
|
|
|
|
[JsonProperty("rooms")]
|
|
public List<RoomConfig> Rooms { get; set; } = new List<RoomConfig>();
|
|
|
|
[JsonIgnore]
|
|
public bool DisableConfigSave { get; set; } = false; // for CLI
|
|
}
|
|
|
|
public partial class RoomConfig
|
|
{
|
|
public RoomConfig() : base(x => x.AutoMap(p => new[] { "Has" + p.Name }))
|
|
{ }
|
|
|
|
internal void SetParent(GlobalConfig? config) => this.Parent = config;
|
|
|
|
public string? WorkDirectory => this.GetPropertyValue<string>();
|
|
}
|
|
|
|
public partial class GlobalConfig
|
|
{
|
|
public GlobalConfig() : base(x => x.AutoMap(p => new[] { "Has" + p.Name }))
|
|
{
|
|
this.Parent = DefaultConfig.Instance;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 当前工作目录
|
|
/// </summary>
|
|
public string? WorkDirectory
|
|
{
|
|
get => this.GetPropertyValue<string>();
|
|
set => this.SetPropertyValue(value);
|
|
}
|
|
}
|
|
}
|