mirror of https://github.com/leiurayer/downkyi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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;
|
|
}
|
|
}
|