mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
21 lines
477 B
C#
21 lines
477 B
C#
|
using Newtonsoft.Json;
|
|||
|
|
|||
|
namespace BililiveRecorder.Core.Config
|
|||
|
{
|
|||
|
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
|
|||
|
internal class ConfigWrapper
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Config Version
|
|||
|
/// </summary>
|
|||
|
[JsonProperty("version")]
|
|||
|
public int Version { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Config Data String
|
|||
|
/// </summary>
|
|||
|
[JsonProperty("data")]
|
|||
|
public string Data { get; set; }
|
|||
|
}
|
|||
|
}
|