bloxstrap/Bloxstrap/Extensions/ServerTypeEx.cs
2024-09-01 09:52:43 +01:00

14 lines
413 B
C#

namespace Bloxstrap.Extensions
{
static class ServerTypeEx
{
public static string ToTranslatedString(this ServerType value) => value switch
{
ServerType.Public => Strings.Enums_ServerType_Public,
ServerType.Private => Strings.Enums_ServerType_Private,
ServerType.Reserved => Strings.Enums_ServerType_Reserved,
_ => "?"
};
}
}