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