mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
15 lines
318 B
C#
15 lines
318 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BililiveRecorder.Core.Config
|
|
{
|
|
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
|
|
public class RoomV1
|
|
{
|
|
[JsonProperty("id")]
|
|
public int Roomid { get; set; }
|
|
|
|
[JsonProperty("enabled")]
|
|
public bool Enabled { get; set; }
|
|
}
|
|
}
|