cloutier--bird.makeup/src/BirdsiteLive.Pipeline/Contracts/ISendTweetsToFollowersProcessor.cs
2020-07-22 19:27:25 -04:00

11 lines
No EOL
318 B
C#

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