mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-21 22:41:05 +08:00
11 lines
147 B
Java
11 lines
147 B
Java
package com.openisle.model;
|
|
|
|
/**
|
|
* Status of a post during its lifecycle.
|
|
*/
|
|
public enum PostStatus {
|
|
PUBLISHED,
|
|
PENDING,
|
|
REJECTED
|
|
}
|