Files
FileFlowsPlugins/Gotify/ExtensionMethods.cs

7 lines
167 B
C#

namespace FileFlows.Gotify;
internal static class ExtensionMethods
{
public static string? EmptyAsNull(this string str) => str == string.Empty ? null : str;
}