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/Entities/BaseItemInfo.cs | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'MediaBrowser.Model/Entities/BaseItemInfo.cs') diff --git a/MediaBrowser.Model/Entities/BaseItemInfo.cs b/MediaBrowser.Model/Entities/BaseItemInfo.cs index c7483f073..dc7b3bebe 100644 --- a/MediaBrowser.Model/Entities/BaseItemInfo.cs +++ b/MediaBrowser.Model/Entities/BaseItemInfo.cs @@ -1,5 +1,4 @@ -using ProtoBuf; -using System; +using System; using System.Runtime.Serialization; namespace MediaBrowser.Model.Entities @@ -7,56 +6,48 @@ namespace MediaBrowser.Model.Entities /// /// This is a stub class containing only basic information about an item /// - [ProtoContract] public class BaseItemInfo { /// /// Gets or sets the name. /// /// The name. - [ProtoMember(1)] public string Name { get; set; } /// /// Gets or sets the id. /// /// The id. - [ProtoMember(2)] public string Id { get; set; } /// /// Gets or sets the type. /// /// The type. - [ProtoMember(3)] public string Type { get; set; } /// /// Gets or sets a value indicating whether this instance is folder. /// /// true if this instance is folder; otherwise, false. - [ProtoMember(4)] public bool IsFolder { get; set; } /// /// Gets or sets the run time ticks. /// /// The run time ticks. - [ProtoMember(5)] public long? RunTimeTicks { get; set; } /// /// Gets or sets the primary image tag. /// /// The primary image tag. - [ProtoMember(6)] public Guid? PrimaryImageTag { get; set; } /// /// Gets or sets the backdrop image tag. /// /// The backdrop image tag. - [ProtoMember(7)] public Guid? BackdropImageTag { get; set; } /// -- cgit v1.2.3