mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-05-16 16:34:07 +02:00
8 lines
118 B
C#
8 lines
118 B
C#
namespace Phantom.Controller.Services.Users;
|
|
|
|
public enum DeleteUserResult : byte {
|
|
Deleted,
|
|
NotFound,
|
|
Failed
|
|
}
|