mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-16 02:01:29 -07:00
14 lines
413 B
C#
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,
|
|
_ => "?"
|
|
};
|
|
}
|
|
}
|