11 lines
338 B
C#
11 lines
338 B
C#
using LightlessSyncShared.Models;
|
|
|
|
namespace LightlessSyncServer.Services.Interfaces
|
|
{
|
|
public interface IPruneService
|
|
{
|
|
Task<int> CountPrunableUsersAsync(string groupGid, int days, CancellationToken ct);
|
|
Task<IReadOnlyList<GroupPair>> ExecutePruneAsync(string groupGid, int days, CancellationToken ct);
|
|
}
|
|
}
|