BirdsiteLive/src/BirdsiteLive.Pipeline/Contracts/Federation/ISaveProgressionProcessor.cs

11 lines
299 B
C#
Raw Normal View History

2020-07-23 01:27:25 +02:00
using System.Threading;
using System.Threading.Tasks;
using BirdsiteLive.Pipeline.Models;
namespace BirdsiteLive.Pipeline.Contracts.Federation
2020-07-23 01:27:25 +02:00
{
public interface ISaveProgressionProcessor
{
Task ProcessAsync(UserWithDataToSync userWithTweetsToSync, CancellationToken ct);
2020-07-23 01:27:25 +02:00
}
}