mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
28 lines
619 B
C#
28 lines
619 B
C#
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;
|
|
|
|
public long Uid { get; set; }
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
public string AreaParent { get; set; } = string.Empty;
|
|
|
|
public string AreaChild { get; set; } = string.Empty;
|
|
|
|
public int PartIndex { get; set; }
|
|
|
|
public int Qn { get; set; }
|
|
|
|
public JObject? Json { get; set; }
|
|
}
|
|
}
|