Files
TinyInvoice/Server/Extensions.cs
Andre Beging de76b1d432 Init
2024-11-06 16:00:26 +01:00

7 lines
173 B
C#

namespace Server
{
public static class Extensions
{
public static bool IsNullOrWhiteSpace(this string? value) => string.IsNullOrWhiteSpace(value);
}
}