mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-31 13:29:31 -06:00
7 lines
167 B
C#
7 lines
167 B
C#
namespace FileFlows.Gotify;
|
|
|
|
internal static class ExtensionMethods
|
|
{
|
|
public static string? EmptyAsNull(this string str) => str == string.Empty ? null : str;
|
|
}
|