mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
14 lines
286 B
C#
14 lines
286 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BililiveRecorder.Core.Config.V1
|
|
{
|
|
internal sealed class ConfigV1Wrapper : ConfigBase
|
|
{
|
|
/// <summary>
|
|
/// Config Data String
|
|
/// </summary>
|
|
[JsonProperty("data")]
|
|
public string? Data { get; set; }
|
|
}
|
|
}
|