Bindable objects
#6552
-
|
Say I have an object structure like this: public class Song
{
public string Title { get; set; }
public string Artist { get; set; }
public double Rating { get; set; }
public Album Album { get; set; }
}
public class Album
{
public string Title { get; set; }
public string AlbumArtist { get; set; }
public double Rating { get; set; }
}I want |
Beta Was this translation helpful? Give feedback.
Answered by
peppy
Mar 17, 2025
Replies: 1 comment
-
|
There is not. You could consider something like Realm (if you need persistence) or a PropertyChanged flow. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
sk-zk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is not. You could consider something like Realm (if you need persistence) or a PropertyChanged flow.