BililiveRecorder/BililiveRecorder.Core/Config/V1/RoomV1.cs

15 lines
320 B
C#
Raw Normal View History

2021-01-01 14:46:27 +08:00
using Newtonsoft.Json;
2018-11-01 23:40:50 +08:00
2021-01-01 14:46:27 +08:00
namespace BililiveRecorder.Core.Config.V1
2018-11-01 23:40:50 +08:00
{
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
internal class RoomV1
2018-11-01 23:40:50 +08:00
{
[JsonProperty("id")]
public int Roomid { get; set; }
[JsonProperty("enabled")]
public bool Enabled { get; set; }
}
}