User.dart 152 Bytes
/*
 * @author lsy
 * @date   2019-09-03
 **/
library User;

class User {
  final String key;
  final Object type;

  const User(this.key, this.type);
}