IEventAsync.cs 130 B

123456789
  1. using System.Threading.Tasks;
  2. namespace Common.Event
  3. {
  4. public interface IEventAsync
  5. {
  6. Task RunAsync(Env env);
  7. }
  8. }