global using System; global using System.Collections.Generic; global using System.Threading; global using System.Threading.Tasks; using System.Net; using System.Net.Security; namespace Meum.Core; public static class Constants { public static readonly List ApplicationProtocols = [ new("Meum-1") ]; public const int ServerPortDefault = 9320; public const long DefaultStreamErrorCode = 0xA; public const long DefaultCloseErrorCode = 0xB; }