IRunner.cs 307 B

12345678910111213141516171819
  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 = 1;
  10. public bool executeQuery;
  11. public int? skip = 1;
  12. public int take;
  13. public bool queryJoin;
  14. }
  15. }