using System.Threading.Tasks; namespace XYY.TaskTrack.Standard { public interface IBaseConsumer<T> where T : class { Task Consume(T message); } }