mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 20:26:00 +08:00
616efe40c9
close #114 #360
18 lines
580 B
C#
18 lines
580 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 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; }
|
|
}
|
|
}
|