proxy_group.dart 359 B

123456789101112131415161718
  1. import 'package:dart_json_mapper/dart_json_mapper.dart';
  2. @jsonSerializable
  3. class ProxyGroup {
  4. String? name;
  5. String type;
  6. List<String> proxies;
  7. ProxyGroup({required this.name, required this.type, required this.proxies});
  8. Map<String, dynamic> toYamlMap() {
  9. return {
  10. "name": name,
  11. "type": type,
  12. "proxies": proxies,
  13. };
  14. }
  15. }