mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 00:59:28 +01:00
15 lines
568 B
Dart
15 lines
568 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'sources_dao.dart';
|
|
|
|
// ignore_for_file: type=lint
|
|
mixin _$SourcesDaoMixin on DatabaseAccessor<SubtracksDatabase> {
|
|
Sources get sources => attachedDatabase.sources;
|
|
SubsonicSettings get subsonicSettings => attachedDatabase.subsonicSettings;
|
|
Artists get artists => attachedDatabase.artists;
|
|
Albums get albums => attachedDatabase.albums;
|
|
Playlists get playlists => attachedDatabase.playlists;
|
|
PlaylistSongs get playlistSongs => attachedDatabase.playlistSongs;
|
|
Songs get songs => attachedDatabase.songs;
|
|
}
|