mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
8cac84b4ad
Will try to reprocess _NzbDrone_ directories each pass, but will mark with an error when possible. Attempt to process _UNPACK_ and _FAILED_ directories 30 minutes after first detected by NzbDrone (to give SAB time to unpack properly before processing).
16 lines
336 B
C#
16 lines
336 B
C#
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; }
|
|
}
|
|
}
|