Skip to content

Instantly share code, notes, and snippets.

@christiannagel
Created August 30, 2018 11:10
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 christiannagel/2e64cfe958afba2400915f16ce43d544 to your computer and use it in GitHub Desktop.
Save christiannagel/2e64cfe958afba2400915f16ce43d544 to your computer and use it in GitHub Desktop.
Simple model for EF Core
public class Book
{
public Guid BookId { get; set; }
public string Title { get; set; }
public string Publisher { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment