CrazyAuctions/paper/src/main/java/com/badbones69/crazyauctions/api/enums/CancelledReason.java

14 lines
254 B
Java
Raw Normal View History

2022-06-12 01:45:47 +02:00
package com.badbones69.crazyauctions.api.enums;
2019-07-12 01:30:05 +02:00
public enum CancelledReason {
2020-01-04 02:47:42 +01:00
/**
* Cancelled by an administrator.
*/
ADMIN_FORCE_CANCEL(),
/**
* Cancelled by the player them self.
*/
PLAYER_FORCE_CANCEL()
2023-08-21 20:06:07 +02:00
2019-07-12 01:30:05 +02:00
}