Created
February 14, 2018 22:32
-
-
Save FraukeN/831d417e28cc7b92daf74bedafeca7cc to your computer and use it in GitHub Desktop.
ToDoItem with SQLiteEntity
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
public class ToDoItem : SQLiteEntity | |
{ | |
public string Title { get; set; } | |
public string Description { get; set; } | |
public ToDoItemState State { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment