Move interface declarations into per-area Interfaces/ subfolders, merge the small task-list filter classes into StatusFilter/SmartFlagFilter, and simplify related services, converters and hub DTO handling. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
8 lines
267 B
C#
8 lines
267 B
C#
namespace ClaudeDo.Worker;
|
|
|
|
internal static class StringExtensions
|
|
{
|
|
/// <summary>Returns null for null/whitespace input, otherwise the original string.</summary>
|
|
public static string? NullIfBlank(this string? s) => string.IsNullOrWhiteSpace(s) ? null : s;
|
|
}
|