Skip to content

Instantly share code, notes, and snippets.

@FraukeN
Last active February 7, 2018 21:23
Show Gist options
  • Save FraukeN/902a863c25f5c220b298acd7994a446e to your computer and use it in GitHub Desktop.
Save FraukeN/902a863c25f5c220b298acd7994a446e to your computer and use it in GitHub Desktop.
ToDoItem1
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