9 lines
136 B
C#
9 lines
136 B
C#
|
namespace Luski.net.Enums;
|
||
|
|
||
|
public enum ServerType : byte
|
||
|
{
|
||
|
Public = 0,
|
||
|
Main = 1,
|
||
|
PublicSub = 2,
|
||
|
MainSub = 3
|
||
|
}
|