mirror of https://github.com/leiurayer/downkyi
12 lines
381 B
12 lines
381 B
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;
|
|
}
|
|
}
|