mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-20 09:06:38 +00:00
update live tv data transfer
This commit is contained in:
@@ -8,29 +8,29 @@ namespace MediaBrowser.Model.Sync
|
||||
/// Gets or sets the targets.
|
||||
/// </summary>
|
||||
/// <value>The targets.</value>
|
||||
public List<SyncTarget> Targets { get; set; }
|
||||
public SyncTarget[] Targets { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the options.
|
||||
/// </summary>
|
||||
/// <value>The options.</value>
|
||||
public List<SyncJobOption> Options { get; set; }
|
||||
public SyncJobOption[] Options { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the quality options.
|
||||
/// </summary>
|
||||
/// <value>The quality options.</value>
|
||||
public List<SyncQualityOption> QualityOptions { get; set; }
|
||||
public SyncQualityOption[] QualityOptions { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the profile options.
|
||||
/// </summary>
|
||||
/// <value>The profile options.</value>
|
||||
public List<SyncProfileOption> ProfileOptions { get; set; }
|
||||
public SyncProfileOption[] ProfileOptions { get; set; }
|
||||
|
||||
public SyncDialogOptions()
|
||||
{
|
||||
Targets = new List<SyncTarget>();
|
||||
Options = new List<SyncJobOption>();
|
||||
QualityOptions = new List<SyncQualityOption>();
|
||||
ProfileOptions = new List<SyncProfileOption>();
|
||||
Targets = new SyncTarget[] { };
|
||||
Options = new SyncJobOption[] { };
|
||||
QualityOptions = new SyncQualityOption[] { };
|
||||
ProfileOptions = new SyncProfileOption[] { };
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user