IBenchmarkQuery.cs 253 B

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