IEventSync.cs 91 B

1234567
  1. namespace Common.Event
  2. {
  3. public interface IEventSync
  4. {
  5. void Run(Env env);
  6. }
  7. }