cloutier--bird.makeup/src/BirdsiteLive.Pipeline/Contracts/ISendTweetsToFollowersProcessor.cs

11 lines
296 B
C#
Raw Normal View History

2020-07-16 01:19:41 -04:00
using System.Threading;
using System.Threading.Tasks;
using BirdsiteLive.Pipeline.Models;
namespace BirdsiteLive.Pipeline.Contracts
{
public interface ISendTweetsToFollowersProcessor
{
Task ProcessAsync(UserWithTweetsToSync userWithTweetsToSync, CancellationToken ct);
}
}