diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-14 21:42:09 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-14 21:42:09 -0400 |
| commit | 99c991f001d99d441c3b3188a3bf5affb2e4c14b (patch) | |
| tree | 1448f66329d9feb7af89ac91544482c018756cbb /MediaBrowser.Model/Sync | |
| parent | cde1df51ec093b1d35fd5fa5e89c528ff079a887 (diff) | |
save appVersion with device record
Diffstat (limited to 'MediaBrowser.Model/Sync')
| -rw-r--r-- | MediaBrowser.Model/Sync/SyncDialogOptions.cs | 8 | ||||
| -rw-r--r-- | MediaBrowser.Model/Sync/SyncJob.cs | 5 |
2 files changed, 12 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Sync/SyncDialogOptions.cs b/MediaBrowser.Model/Sync/SyncDialogOptions.cs index 080f7f2a86..2b8672d76e 100644 --- a/MediaBrowser.Model/Sync/SyncDialogOptions.cs +++ b/MediaBrowser.Model/Sync/SyncDialogOptions.cs @@ -19,12 +19,18 @@ namespace MediaBrowser.Model.Sync /// </summary> /// <value>The quality options.</value> public List<SyncQualityOption> QualityOptions { get; set; } - + /// <summary> + /// Gets or sets the profile options. + /// </summary> + /// <value>The profile options.</value> + public List<SyncQualityOption> ProfileOptions { get; set; } + public SyncDialogOptions() { Targets = new List<SyncTarget>(); Options = new List<SyncJobOption>(); QualityOptions = new List<SyncQualityOption>(); + ProfileOptions = new List<SyncQualityOption>(); } } } diff --git a/MediaBrowser.Model/Sync/SyncJob.cs b/MediaBrowser.Model/Sync/SyncJob.cs index 6610ad610d..1282c01db5 100644 --- a/MediaBrowser.Model/Sync/SyncJob.cs +++ b/MediaBrowser.Model/Sync/SyncJob.cs @@ -26,6 +26,11 @@ namespace MediaBrowser.Model.Sync /// <value>The quality.</value> public string Quality { get; set; } /// <summary> + /// Gets or sets the profile. + /// </summary> + /// <value>The profile.</value> + public string Profile { get; set; } + /// <summary> /// Gets or sets the category. /// </summary> /// <value>The category.</value> |
