mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 02:21:27 -07:00
14 lines
443 B
C#
14 lines
443 B
C#
namespace Bloxstrap.Extensions
|
|
{
|
|
static class ServerTypeEx
|
|
{
|
|
public static string ToTranslatedString(this ServerType value) => value switch
|
|
{
|
|
ServerType.Public => Resources.Strings.Enums_ServerType_Public,
|
|
ServerType.Private => Resources.Strings.Enums_ServerType_Private,
|
|
ServerType.Reserved => Resources.Strings.Enums_ServerType_Reserved,
|
|
_ => "?"
|
|
};
|
|
}
|
|
}
|