mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Add to History when SAB receives the NZB and set episode.status to grabbed.
This commit is contained in:
parent
88ad555e75
commit
c448c17605
5 changed files with 54 additions and 7 deletions
14
NzbDrone.Core/Model/EpisodeStatusType.cs
Normal file
14
NzbDrone.Core/Model/EpisodeStatusType.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Model
|
||||
{
|
||||
public enum EpisodeStatusType
|
||||
{
|
||||
Missing = 0,
|
||||
Grabbed = 1,
|
||||
Downloaded = 2
|
||||
}
|
||||
}
|
|
@ -3,6 +3,7 @@ using System.Collections.Generic;
|
|||
using System.Linq;
|
||||
using System.Text;
|
||||
using NzbDrone.Core.Repository;
|
||||
using NzbDrone.Core.Repository.Quality;
|
||||
|
||||
namespace NzbDrone.Core.Model
|
||||
{
|
||||
|
@ -15,6 +16,7 @@ namespace NzbDrone.Core.Model
|
|||
public Uri Link { get; set; }
|
||||
public string Description { get; set; }
|
||||
public bool Proper { get; set; }
|
||||
public QualityTypes Quality { get; set; }
|
||||
|
||||
public bool IsPassworded()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue