Query.dart 129 Bytes
/*
 * @author lsy
 * @date   2019-09-04
 **/
library Query;

class Query {
  final String params;

  const Query(this.params);
}