Created
January 20, 2015 02:38
-
-
Save detroitpro/6311c18cd44c53cc7d3e to your computer and use it in GitHub Desktop.
ReactiveObject can't be stored in Akavache?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// <summary> | |
| /// ReactiveObject can't be stored in Akavache? | |
| /// </summary> | |
| public class ReactiveItem //: ReactiveObject | |
| { | |
| public string Name { get; set; } | |
| public override string ToString () | |
| { | |
| return string.Format ("[ReactiveItem: Name={0}]", Name); | |
| } | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
[DataMember]
public string Name { get; set; }