mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
12 lines
408 B
C#
12 lines
408 B
C#
namespace DownKyi.Core.Settings.Models;
|
|
|
|
public class VideoContentSettings
|
|
{
|
|
public bool DownloadAudio { get; set; } = true;
|
|
public bool DownloadVideo { get; set; } = true;
|
|
public bool DownloadDanmaku { get; set; } = true;
|
|
public bool DownloadSubtitle { get; set; } = true;
|
|
public bool DownloadCover { get; set; } = true;
|
|
|
|
public bool GenerateMovieMetadata { get; set; } = false;
|
|
} |