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/Tasks/TaskResult.cs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'MediaBrowser.Model/Tasks/TaskResult.cs') diff --git a/MediaBrowser.Model/Tasks/TaskResult.cs b/MediaBrowser.Model/Tasks/TaskResult.cs index 1a4853f4e..46d2c86e7 100644 --- a/MediaBrowser.Model/Tasks/TaskResult.cs +++ b/MediaBrowser.Model/Tasks/TaskResult.cs @@ -1,47 +1,40 @@ -using ProtoBuf; -using System; +using System; namespace MediaBrowser.Model.Tasks { /// /// Class TaskExecutionInfo /// - [ProtoContract] public class TaskResult { /// /// Gets or sets the start time UTC. /// /// The start time UTC. - [ProtoMember(1)] public DateTime StartTimeUtc { get; set; } /// /// Gets or sets the end time UTC. /// /// The end time UTC. - [ProtoMember(2)] public DateTime EndTimeUtc { get; set; } /// /// Gets or sets the status. /// /// The status. - [ProtoMember(3)] public TaskCompletionStatus Status { get; set; } /// /// Gets or sets the name. /// /// The name. - [ProtoMember(4)] public string Name { get; set; } /// /// Gets or sets the id. /// /// The id. - [ProtoMember(5)] public Guid Id { get; set; } } } -- cgit v1.2.3