BililiveRecorder/BililiveRecorder.Core/Config/V1/ConfigV1Wrapper.cs

14 lines
286 B
C#
Raw Normal View History

2021-01-01 14:46:27 +08:00
using Newtonsoft.Json;
namespace BililiveRecorder.Core.Config.V1
{
internal sealed class ConfigV1Wrapper : ConfigBase
{
/// <summary>
/// Config Data String
/// </summary>
[JsonProperty("data")]
2021-02-23 18:03:37 +08:00
public string? Data { get; set; }
2021-01-01 14:46:27 +08:00
}
}