12 lines
234 B
C#
12 lines
234 B
C#
namespace ModpackUpdater.Apps.Manager;
|
|
|
|
internal static class Extensions
|
|
{
|
|
public static string? Nullify(this string? @this)
|
|
{
|
|
if (string.IsNullOrEmpty(@this))
|
|
return null;
|
|
return @this;
|
|
}
|
|
}
|