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.Controller/Entities/UserItemData.cs | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'MediaBrowser.Controller/Entities/UserItemData.cs') diff --git a/MediaBrowser.Controller/Entities/UserItemData.cs b/MediaBrowser.Controller/Entities/UserItemData.cs index 3e960d527..8328e385b 100644 --- a/MediaBrowser.Controller/Entities/UserItemData.cs +++ b/MediaBrowser.Controller/Entities/UserItemData.cs @@ -1,5 +1,4 @@ -using ProtoBuf; -using System; +using System; using System.Runtime.Serialization; namespace MediaBrowser.Controller.Entities @@ -7,14 +6,12 @@ namespace MediaBrowser.Controller.Entities /// /// Class UserItemData /// - [ProtoContract] public class UserItemData { /// /// Gets or sets the user id. /// /// The user id. - [ProtoMember(1)] public Guid UserId { get; set; } /// @@ -27,7 +24,6 @@ namespace MediaBrowser.Controller.Entities /// The rating. /// A 0-10 rating is required for UserItemData. /// A 0-10 rating is required for UserItemData. - [ProtoMember(2)] public float? Rating { get @@ -52,35 +48,30 @@ namespace MediaBrowser.Controller.Entities /// Gets or sets the playback position ticks. /// /// The playback position ticks. - [ProtoMember(3)] public long PlaybackPositionTicks { get; set; } /// /// Gets or sets the play count. /// /// The play count. - [ProtoMember(4)] public int PlayCount { get; set; } /// /// Gets or sets a value indicating whether this instance is favorite. /// /// true if this instance is favorite; otherwise, false. - [ProtoMember(5)] public bool IsFavorite { get; set; } /// /// Gets or sets the last played date. /// /// The last played date. - [ProtoMember(6)] public DateTime? LastPlayedDate { get; set; } /// /// Gets or sets a value indicating whether this is played. /// /// true if played; otherwise, false. - [ProtoMember(7)] public bool Played { get; set; } /// -- cgit v1.2.3