mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
Refactored the shit out of PostDownloadProvider
This commit is contained in:
parent
35e44284c0
commit
ec08436587
12 changed files with 323 additions and 576 deletions
|
@ -1,15 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Model
|
||||
{
|
||||
public class PostDownloadInfoModel
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public DateTime Added { get; set; }
|
||||
public PostDownloadStatusType Status { get; set; }
|
||||
}
|
||||
}
|
|
@ -2,14 +2,11 @@
|
|||
{
|
||||
public enum PostDownloadStatusType
|
||||
{
|
||||
|
||||
Unknown = 0,
|
||||
Unpacking = 1,
|
||||
Failed = 2,
|
||||
Processed = 3,
|
||||
InvalidSeries = 4,
|
||||
ParseError = 5,
|
||||
InvalidEpisode = 6,
|
||||
NoError = 7,
|
||||
UnknownSeries = 3,
|
||||
ParseError = 4,
|
||||
NoError = 5,
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue