Skip to content

Instantly share code, notes, and snippets.

@vmussak
Created May 14, 2018 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vmussak/0e8d1715fa5c83043b6ad15d740cbd6b to your computer and use it in GitHub Desktop.
Save vmussak/0e8d1715fa5c83043b6ad15d740cbd6b to your computer and use it in GitHub Desktop.
namespace BlazorTodoList.Models
{
public class TarefaModel
{
public string Titulo { get; set; }
public bool Completa { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment