cloutier--bird.makeup/src/BirdsiteLive.Pipeline/Contracts/ISendTweetsToFollowersProcessor.cs
2023-02-22 11:30:02 -05:00

11 lines
No EOL
294 B
C#

using System.Threading;
using System.Threading.Tasks;
using BirdsiteLive.Pipeline.Models;
namespace BirdsiteLive.Pipeline.Contracts
{
public interface ISendTweetsToFollowersProcessor
{
Task ProcessAsync(UserWithDataToSync userWithTweetsToSync, CancellationToken ct);
}
}