pschelpdesk/Vendor/Prise/Utils/ValueUtils.cs
2024-11-04 20:45:34 +01:00

12 lines
289 B
C#

namespace Prise.Utils
{
public static class ValueUtils
{
public static string ValueOrDefault(this string value, string defaultValue)
{
if (string.IsNullOrWhiteSpace(value))
return defaultValue;
return value;
}
}
}