mirror of
https://github.com/Lidarr/Lidarr
synced 2026-05-08 04:21:32 +02:00
Merge 42c2c53021 into 58a1d9357b
This commit is contained in:
commit
6bca78e985
1 changed files with 5 additions and 1 deletions
|
|
@ -69,13 +69,17 @@ public override bool Equals(object obj)
|
|||
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…
Reference in a new issue