diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-16 01:52:33 -0400 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-16 01:52:33 -0400 |
| commit | 4d083b618dab11f3f2e6f54c149592de2fc16562 (patch) | |
| tree | 3ba890802c3d578103f7509e7fcd9c2929421234 /MediaBrowser.Model/Connectivity | |
| parent | 656a9ddaecc0888613b57de48d60102b19707ec6 (diff) | |
restored request logging
Diffstat (limited to 'MediaBrowser.Model/Connectivity')
| -rw-r--r-- | MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs | 7 | ||||
| -rw-r--r-- | MediaBrowser.Model/Connectivity/ClientType.cs | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs b/MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs index b61ea99fa..a70dddaa6 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 7e837ed0e..3ae3ded21 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 |
