This commit is contained in:
austinried
2025-10-16 20:04:15 +09:00
parent b0bb26f84b
commit 7f592c7db1
166 changed files with 237 additions and 34002 deletions

View File

@@ -1,19 +0,0 @@
import 'package:xml/xml.dart';
enum Status {
ok('ok'),
failed('failed');
const Status(this.value);
final String value;
}
class SubsonicResponse {
late Status status;
late XmlElement xml;
SubsonicResponse(XmlDocument xml) {
this.xml = xml.getElement('subsonic-response')!;
status = Status.values.byName(this.xml.getAttribute('status')!);
}
}