2022-06-09 15:40:08 +08:00
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
|
|
|
namespace BililiveRecorder.Core.Templating
|
|
|
|
{
|
|
|
|
public class FileNameTemplateContext
|
|
|
|
{
|
|
|
|
public int RoomId { get; set; }
|
|
|
|
|
|
|
|
public int ShortId { get; set; }
|
|
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
2023-07-08 16:14:45 +08:00
|
|
|
public long Uid { get; set; }
|
|
|
|
|
2022-06-09 15:40:08 +08:00
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public string AreaParent { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public string AreaChild { get; set; } = string.Empty;
|
|
|
|
|
2022-08-27 16:51:13 +08:00
|
|
|
public int PartIndex { get; set; }
|
|
|
|
|
2022-06-09 15:40:08 +08:00
|
|
|
public int Qn { get; set; }
|
|
|
|
|
|
|
|
public JObject? Json { get; set; }
|
|
|
|
}
|
|
|
|
}
|