mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-05-09 15:24:00 -04:00
11 lines
338 B
C#
11 lines
338 B
C#
namespace Cleanuparr.Infrastructure.Features.Seeker;
|
|
|
|
/// <summary>
|
|
/// Result of processing an arr instance for proactive search candidates.
|
|
/// </summary>
|
|
internal sealed record SeekerProcessResult
|
|
{
|
|
public required List<SeekerSearchCandidate> Candidates { get; init; }
|
|
public required List<long> AllLibraryIds { get; init; }
|
|
}
|