mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 20:26:00 +08:00
17 lines
406 B
C#
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>();
|
||
|
}
|
||
|
}
|