mirror of
https://github.com/C9Glax/tranga.git
synced 2025-02-23 15:50:13 +01:00
10 lines
162 B
C#
10 lines
162 B
C#
|
namespace API.Schema;
|
|||
|
|
|||
|
public enum MangaReleaseStatus : byte
|
|||
|
{
|
|||
|
Continuing = 0,
|
|||
|
Completed = 1,
|
|||
|
OnHiatus = 2,
|
|||
|
Cancelled = 3,
|
|||
|
Unreleased = 4
|
|||
|
}
|