using ProtoBuf; 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; } } }