Skip to content

Instantly share code, notes, and snippets.

@LayZeeDK
Last active August 29, 2019 07:59
Show Gist options
  • Save LayZeeDK/56d7a5eb26600c85bcc710e29064e820 to your computer and use it in GitHub Desktop.
Save LayZeeDK/56d7a5eb26600c85bcc710e29064e820 to your computer and use it in GitHub Desktop.
C#: Todo item
public class TodoItem
{
public string Id { get; set; }
public bool IsDone { get; set; }
public string Title { get; set; }
public async Task Save()
{
// Write to database
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment