mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-05 23:27:21 +01:00
Merge 42c2c53021 into 65802559cb
This commit is contained in:
commit
53f77dcfdf
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