IRunner.cs 239 B

123456789101112131415
  1. namespace App.OrmRunner
  2. {
  3. public interface IRunner
  4. {
  5. void Run(RunConfig config);
  6. }
  7. public class RunConfig
  8. {
  9. public int repeatCount;
  10. public int take;
  11. public bool queryJoin;
  12. }
  13. }