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