IEventSync.cs 84 B

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