IEventAsync.cs 123 B

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