IBaseConsumer.cs 169 B

123456789
  1. using System.Threading.Tasks;
  2. namespace XYY.TaskTrack.Standard
  3. {
  4. public interface IBaseConsumer<T> where T : class
  5. {
  6. Task Consume(T message);
  7. }
  8. }