Skip to content

Instantly share code, notes, and snippets.

@MBehtemam
Created December 1, 2018 03:56
Show Gist options
  • Save MBehtemam/9bdb0d30fb9fe76bd22498697601ccce to your computer and use it in GitHub Desktop.
Save MBehtemam/9bdb0d30fb9fe76bd22498697601ccce to your computer and use it in GitHub Desktop.
Todo Model
using System;
namespace TodoAPI.Models
{
public class Todo
{
public int Id { get; set; }
public string Title { get; set; }
public bool Completed { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment