namespace Server { public static class Extensions { public static bool IsNullOrWhiteSpace(this string? value) => string.IsNullOrWhiteSpace(value); } }