mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Merge 42c2c53021
into d2330a3232
This commit is contained in:
commit
8f918abe6f
1 changed files with 5 additions and 1 deletions
|
@ -69,13 +69,17 @@ namespace NzbDrone.Core.Music
|
||||||
public static ReleaseStatus Promotion => new ReleaseStatus(1, "Promotion");
|
public static ReleaseStatus Promotion => new ReleaseStatus(1, "Promotion");
|
||||||
public static ReleaseStatus Bootleg => new ReleaseStatus(2, "Bootleg");
|
public static ReleaseStatus Bootleg => new ReleaseStatus(2, "Bootleg");
|
||||||
public static ReleaseStatus Pseudo => new ReleaseStatus(3, "Pseudo-Release");
|
public static ReleaseStatus Pseudo => new ReleaseStatus(3, "Pseudo-Release");
|
||||||
|
public static ReleaseStatus Withdrawn => new ReleaseStatus(4, "Withdrawn");
|
||||||
|
public static ReleaseStatus Cancelled => new ReleaseStatus(5, "Cancelled");
|
||||||
|
|
||||||
public static readonly List<ReleaseStatus> All = new List<ReleaseStatus>
|
public static readonly List<ReleaseStatus> All = new List<ReleaseStatus>
|
||||||
{
|
{
|
||||||
Official,
|
Official,
|
||||||
Promotion,
|
Promotion,
|
||||||
Bootleg,
|
Bootleg,
|
||||||
Pseudo
|
Pseudo,
|
||||||
|
Withdrawn,
|
||||||
|
Cancelled
|
||||||
};
|
};
|
||||||
|
|
||||||
public static ReleaseStatus FindById(int id)
|
public static ReleaseStatus FindById(int id)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue