diff options
Diffstat (limited to 'MediaBrowser.Model')
| -rw-r--r-- | MediaBrowser.Model/Devices/DeviceInfo.cs | 5 | ||||
| -rw-r--r-- | MediaBrowser.Model/LiveTv/LiveTvOptions.cs | 5 | ||||
| -rw-r--r-- | MediaBrowser.Model/Sync/SyncDialogOptions.cs | 8 | ||||
| -rw-r--r-- | MediaBrowser.Model/Sync/SyncJob.cs | 5 |
4 files changed, 22 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Devices/DeviceInfo.cs b/MediaBrowser.Model/Devices/DeviceInfo.cs index e5efe9f605..726e9d6e52 100644 --- a/MediaBrowser.Model/Devices/DeviceInfo.cs +++ b/MediaBrowser.Model/Devices/DeviceInfo.cs @@ -46,6 +46,11 @@ namespace MediaBrowser.Model.Devices /// <value>The name of the application.</value> public string AppName { get; set; } /// <summary> + /// Gets or sets the application version. + /// </summary> + /// <value>The application version.</value> + public string AppVersion { get; set; } + /// <summary> /// Gets or sets the last user identifier. /// </summary> /// <value>The last user identifier.</value> diff --git a/MediaBrowser.Model/LiveTv/LiveTvOptions.cs b/MediaBrowser.Model/LiveTv/LiveTvOptions.cs index 0cd5eda0c1..c6f6ed84ce 100644 --- a/MediaBrowser.Model/LiveTv/LiveTvOptions.cs +++ b/MediaBrowser.Model/LiveTv/LiveTvOptions.cs @@ -4,5 +4,10 @@ { public int? GuideDays { get; set; } public bool EnableMovieProviders { get; set; } + + public LiveTvOptions() + { + EnableMovieProviders = true; + } } }
\ No newline at end of file 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> |
