aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model')
-rw-r--r--MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs7
-rw-r--r--MediaBrowser.Model/Connectivity/ClientType.cs3
-rw-r--r--MediaBrowser.Model/Querying/ItemQuery.cs6
3 files changed, 16 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs b/MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs
index b61ea99fa6..a70dddaa65 100644
--- a/MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs
+++ b/MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs
@@ -51,5 +51,12 @@ namespace MediaBrowser.Model.Connectivity
/// <value>The now playing position ticks.</value>
[ProtoMember(6)]
public long? NowPlayingPositionTicks { get; set; }
+
+ /// <summary>
+ /// Gets or sets the device id.
+ /// </summary>
+ /// <value>The device id.</value>
+ [ProtoMember(7)]
+ public string DeviceId { get; set; }
}
}
diff --git a/MediaBrowser.Model/Connectivity/ClientType.cs b/MediaBrowser.Model/Connectivity/ClientType.cs
index 7e837ed0e9..3ae3ded21a 100644
--- a/MediaBrowser.Model/Connectivity/ClientType.cs
+++ b/MediaBrowser.Model/Connectivity/ClientType.cs
@@ -17,6 +17,9 @@
/// The dashboard
/// </summary>
Dashboard,
+ /// <summary>
+ /// The dlna
+ /// </summary>
Dlna,
/// <summary>
/// The ios
diff --git a/MediaBrowser.Model/Querying/ItemQuery.cs b/MediaBrowser.Model/Querying/ItemQuery.cs
index 3b320a0110..804a6b3990 100644
--- a/MediaBrowser.Model/Querying/ItemQuery.cs
+++ b/MediaBrowser.Model/Querying/ItemQuery.cs
@@ -122,5 +122,11 @@ namespace MediaBrowser.Model.Querying
/// </summary>
/// <value>The image types.</value>
public ImageType[] ImageTypes { get; set; }
+
+ /// <summary>
+ /// Gets or sets the ids, which are specific items to retrieve
+ /// </summary>
+ /// <value>The ids.</value>
+ public string[] Ids { get; set; }
}
}