mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 20:26:00 +08:00
19 lines
618 B
C#
19 lines
618 B
C#
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;
|
|
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; }
|
|
|
|
/// <example>{}</example>
|
|
public string? Json { get; set; }
|
|
}
|
|
}
|