mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-04-29 12:34:09 +02:00
8 lines
115 B
C#
8 lines
115 B
C#
namespace Phantom.Server.Services.Users;
|
|
|
|
public enum DeleteUserResult : byte {
|
|
Deleted,
|
|
NotFound,
|
|
Failed
|
|
}
|