mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-04-05 07:34:22 +02:00
15 lines
370 B
C#
15 lines
370 B
C#
namespace Phantom.Common.Data.Replies;
|
|
|
|
public enum ConfigureInstanceResult : byte {
|
|
Success,
|
|
}
|
|
|
|
public static class ConfigureInstanceResultExtensions {
|
|
public static string ToSentence(this ConfigureInstanceResult reason) {
|
|
return reason switch {
|
|
ConfigureInstanceResult.Success => "Success.",
|
|
_ => "Unknown error.",
|
|
};
|
|
}
|
|
}
|