2022-06-09 15:40:08 +08:00
|
|
|
namespace BililiveRecorder.Web.Models.Rest
|
|
|
|
{
|
|
|
|
public class FileNameTemplateContextDto
|
|
|
|
{
|
|
|
|
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; }
|
|
|
|
|
|
|
|
/// <example>{}</example>
|
|
|
|
public string? Json { get; set; }
|
|
|
|
}
|
|
|
|
}
|