// using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using todo_app.Controllers; namespace todo_app.Migrations { [DbContext(typeof(ToDoContext))] partial class ToDoContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "2.2.6-servicing-10079"); modelBuilder.Entity("todo_app.Controllers.ToDo", b => { b.Property("Id") .ValueGeneratedOnAdd(); b.Property("CreatedTime"); b.Property("Status"); b.Property("Task"); b.HasKey("Id"); b.ToTable("ToDos"); }); #pragma warning restore 612, 618 } } }