122 lines
3.4 KiB
C#
122 lines
3.4 KiB
C#
using System.Collections.Generic;
|
|
using CRD.Utils.Sonarr;
|
|
using YamlDotNet.Serialization;
|
|
|
|
namespace CRD.Utils.Structs;
|
|
|
|
public class CrDownloadOptions{
|
|
[YamlMember(Alias = "hard_sub_lang", ApplyNamingConventions = false)]
|
|
public string Hslang{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public int Kstream{ get; set; }
|
|
|
|
[YamlMember(Alias = "no_video", ApplyNamingConventions = false)]
|
|
public bool Novids{ get; set; }
|
|
|
|
[YamlMember(Alias = "no_audio", ApplyNamingConventions = false)]
|
|
public bool Noaudio{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public int StreamServer{ get; set; }
|
|
|
|
[YamlMember(Alias = "quality_video", ApplyNamingConventions = false)]
|
|
public string QualityVideo{ get; set; }
|
|
|
|
[YamlMember(Alias = "quality_audio", ApplyNamingConventions = false)]
|
|
public string QualityAudio{ get; set; }
|
|
|
|
[YamlMember(Alias = "file_name", ApplyNamingConventions = false)]
|
|
public string FileName{ get; set; }
|
|
|
|
[YamlMember(Alias = "leading_numbers", ApplyNamingConventions = false)]
|
|
public int Numbers{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public int Partsize{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public int Timeout{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public int Waittime{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public int FsRetryTime{ get; set; }
|
|
|
|
[YamlMember(Alias = "soft_subs", ApplyNamingConventions = false)]
|
|
public List<string> DlSubs{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public bool SkipSubs{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public bool NoSubs{ get; set; }
|
|
|
|
[YamlMember(Alias = "mux_mp4", ApplyNamingConventions = false)]
|
|
public bool Mp4{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public List<string> Override{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public string VideoTitle{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public string Force{ get; set; }
|
|
|
|
[YamlMember(Alias = "mux_ffmpeg", ApplyNamingConventions = false)]
|
|
public List<string> FfmpegOptions{ get; set; }
|
|
|
|
[YamlMember(Alias = "mux_mkvmerge", ApplyNamingConventions = false)]
|
|
public List<string> MkvmergeOptions{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public LanguageItem DefaultSub{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public LanguageItem DefaultAudio{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public string CcTag{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public bool DlVideoOnce{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public bool? Skipmux{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public bool SyncTiming{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public bool Nocleanup{ get; set; }
|
|
|
|
[YamlMember(Alias = "chapters", ApplyNamingConventions = false)]
|
|
public bool Chapters{ get; set; }
|
|
|
|
[YamlMember(Alias = "dub_lang", ApplyNamingConventions = false)]
|
|
public List<string> DubLang{ get; set; }
|
|
|
|
[YamlMember(Alias = "simultaneous_downloads", ApplyNamingConventions = false)]
|
|
public int SimultaneousDownloads{ get; set; }
|
|
|
|
[YamlMember(Alias = "theme", ApplyNamingConventions = false)]
|
|
public string Theme{ get; set; }
|
|
|
|
[YamlMember(Alias = "accent_color", ApplyNamingConventions = false)]
|
|
public string? AccentColor{ get; set; }
|
|
|
|
[YamlIgnore]
|
|
public string? SelectedCalendarLanguage{ get; set; }
|
|
|
|
[YamlMember(Alias = "history", ApplyNamingConventions = false)]
|
|
public bool History{ get; set; }
|
|
|
|
[YamlMember(Alias = "user_non_drm_streams", ApplyNamingConventions = false)]
|
|
public bool UseNonDrmStreams{ get; set; }
|
|
|
|
[YamlMember(Alias = "sonarr_properties", ApplyNamingConventions = false)]
|
|
public SonarrProperties? SonarrProperties{ get; set; }
|
|
|
|
} |