BililiveRecorder/BililiveRecorder.Web/Models/Rest/Logs/JsonLogDto.cs
2022-08-31 14:46:35 +08:00

17 lines
406 B
C#

using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace BililiveRecorder.Web.Models.Rest.Logs
{
public class JsonLogDto
{
public bool Continuous { get; set; }
public long Cursor { get; set; }
[JsonProperty(ItemConverterType = typeof(RawJsonStringConverter))]
public IEnumerable<string> Logs { get; set; } = Array.Empty<string>();
}
}