using HermesSocketLibrary.Requests.Messages; namespace TwitchChatTTS.Twitch.Redemptions { public interface IRedemptionManager { Task Execute(RedeemableAction action, string senderDisplayName, long senderId); IList Get(string twitchRedemptionId); void Initialize(IEnumerable redemptions, IDictionary actions); } }