IConsumer.cs 179 Bytes 1 2 3 4 5 6 7 8 9 10 using System.Collections.Generic; using System.Threading.Tasks; namespace Pole.EventBus { public interface IConsumer { Task Notice(List<byte[]> list); } }