From 32bc545a854480f11bbb7dbaa4f5205f11acc7d6 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 18 Apr 2013 15:57:28 -0400 Subject: removed unused attributes --- MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs | 9 --------- 1 file changed, 9 deletions(-) (limited to 'MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs') diff --git a/MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs b/MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs index a5e44f22e..dc0c4508b 100644 --- a/MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs +++ b/MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs @@ -1,5 +1,4 @@ using MediaBrowser.Model.Entities; -using ProtoBuf; using System; namespace MediaBrowser.Model.Connectivity @@ -7,56 +6,48 @@ namespace MediaBrowser.Model.Connectivity /// /// Class ClientConnectionInfo /// - [ProtoContract] public class ClientConnectionInfo { /// /// Gets or sets the user id. /// /// The user id. - [ProtoMember(1)] public string UserId { get; set; } /// /// Gets or sets the type of the client. /// /// The type of the client. - [ProtoMember(2)] public string Client { get; set; } /// /// Gets or sets the last activity date. /// /// The last activity date. - [ProtoMember(3)] public DateTime LastActivityDate { get; set; } /// /// Gets or sets the name of the device. /// /// The name of the device. - [ProtoMember(4)] public string DeviceName { get; set; } /// /// Gets or sets the now playing item. /// /// The now playing item. - [ProtoMember(5)] public BaseItemInfo NowPlayingItem { get; set; } /// /// Gets or sets the now playing position ticks. /// /// The now playing position ticks. - [ProtoMember(6)] public long? NowPlayingPositionTicks { get; set; } /// /// Gets or sets the device id. /// /// The device id. - [ProtoMember(7)] public string DeviceId { get; set; } } } -- cgit v1.2.3