Skip to content

Instantly share code, notes, and snippets.

@AndyWatt83
Created December 6, 2021 23:24
Show Gist options
  • Save AndyWatt83/a26f8aa62aefedfd0782bba8b1055763 to your computer and use it in GitHub Desktop.
Save AndyWatt83/a26f8aa62aefedfd0782bba8b1055763 to your computer and use it in GitHub Desktop.
A very simple entity model example
namespace Blog.Database.Entities;
public class BlogPost
{
public int Id { get; set; }
public string Title { get; set; } = default!;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment