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