Files
FileFlowsPlugins/Emby/ExtensionMethods.cs
2022-04-21 17:59:30 +12:00

7 lines
165 B
C#

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