This commit is contained in:
Erica Z 2024-10-29 21:00:21 +01:00
parent 6def98af81
commit 77cb665da8
2 changed files with 0 additions and 16 deletions

View file

@ -1,2 +0,0 @@
mod song;
pub use song::Song;

View file

@ -1,14 +0,0 @@
mod imp {
#[derive(gtk::Properties, Default)]
#[properties(wrapper_type = super::Song)]
pub struct Song {
inner: RefCell<subsonic::Song>,
#[property(get = |song| song.inner.borrow().id)]
id: &'static str,
}
}
glib::wrapper! {
pub struct Song(ObjectSubclass<imp::Song>);
}