mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-25 02:30:20 +02:00
23 lines
524 B
C#
23 lines
524 B
C#
|
using System;
|
||
|
using NzbDrone.Core.Parser.Model;
|
||
|
|
||
|
namespace NzbDrone.Core.Download
|
||
|
{
|
||
|
public class HistoryItem
|
||
|
{
|
||
|
public String Id { get; set; }
|
||
|
public String Title { get; set; }
|
||
|
public String Size { get; set; }
|
||
|
public String Category { get; set; }
|
||
|
public Int32 DownloadTime { get; set; }
|
||
|
public String Storage { get; set; }
|
||
|
public HistoryStatus Status { get; set; }
|
||
|
}
|
||
|
|
||
|
public enum HistoryStatus
|
||
|
{
|
||
|
Completed = 0,
|
||
|
Failed = 1
|
||
|
}
|
||
|
}
|