From 1ad990ad720931309afadd9f7912d66595dcc04e Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 19 Aug 2017 15:43:35 -0400 Subject: update live tv data transfer --- MediaBrowser.Model/Sync/SyncDialogOptions.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'MediaBrowser.Model/Sync/SyncDialogOptions.cs') diff --git a/MediaBrowser.Model/Sync/SyncDialogOptions.cs b/MediaBrowser.Model/Sync/SyncDialogOptions.cs index a987a6cd6..e55ca4f08 100644 --- a/MediaBrowser.Model/Sync/SyncDialogOptions.cs +++ b/MediaBrowser.Model/Sync/SyncDialogOptions.cs @@ -8,29 +8,29 @@ namespace MediaBrowser.Model.Sync /// Gets or sets the targets. /// /// The targets. - public List Targets { get; set; } + public SyncTarget[] Targets { get; set; } /// /// Gets or sets the options. /// /// The options. - public List Options { get; set; } + public SyncJobOption[] Options { get; set; } /// /// Gets or sets the quality options. /// /// The quality options. - public List QualityOptions { get; set; } + public SyncQualityOption[] QualityOptions { get; set; } /// /// Gets or sets the profile options. /// /// The profile options. - public List ProfileOptions { get; set; } + public SyncProfileOption[] ProfileOptions { get; set; } public SyncDialogOptions() { - Targets = new List(); - Options = new List(); - QualityOptions = new List(); - ProfileOptions = new List(); + Targets = new SyncTarget[] { }; + Options = new SyncJobOption[] { }; + QualityOptions = new SyncQualityOption[] { }; + ProfileOptions = new SyncProfileOption[] { }; } } } -- cgit v1.2.3