mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-22 06:23:31 -07:00
Merge 42c2c53021
into ad1825f63e
This commit is contained in:
commit
88170f269c
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 Bootleg => new ReleaseStatus(2, "Bootleg");
|
||||
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>
|
||||
{
|
||||
Official,
|
||||
Promotion,
|
||||
Bootleg,
|
||||
Pseudo
|
||||
Pseudo,
|
||||
Withdrawn,
|
||||
Cancelled
|
||||
};
|
||||
|
||||
public static ReleaseStatus FindById(int id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue