Last active
February 7, 2018 21:23
-
-
Save FraukeN/902a863c25f5c220b298acd7994a446e to your computer and use it in GitHub Desktop.
ToDoItem1
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 enum ToDoItemState | |
{ | |
ToDo, | |
Done | |
} | |
public class ToDoItem | |
{ | |
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