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

11 lines
288 B
C#
Raw Normal View History

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