Files
FileFlowsPlugins/Plex/ExtensionMethods.cs
2022-04-21 11:36:21 +12:00

7 lines
165 B
C#

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