Created
December 1, 2018 03:56
-
-
Save MBehtemam/9bdb0d30fb9fe76bd22498697601ccce to your computer and use it in GitHub Desktop.
Todo Model
This file contains 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
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