namespace ModpackUpdater.Apps.Manager; internal static class Extensions { public static string? Nullify(this string? @this) { if (string.IsNullOrEmpty(@this)) return null; return @this; } }