11 lines
296 B
C#
11 lines
296 B
C#
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using BirdsiteLive.Pipeline.Models;
|
|||
|
|
|||
|
namespace BirdsiteLive.Pipeline.Contracts
|
|||
|
{
|
|||
|
public interface ISendTweetsToFollowersProcessor
|
|||
|
{
|
|||
|
Task ProcessAsync(UserWithTweetsToSync userWithTweetsToSync, CancellationToken ct);
|
|||
|
}
|
|||
|
}
|