Skip to content

Instantly share code, notes, and snippets.

@dileno
Last active September 12, 2019 09:00
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 dileno/aec0a5d8e46fd60d08fbee94686ece29 to your computer and use it in GitHub Desktop.
Save dileno/aec0a5d8e46fd60d08fbee94686ece29 to your computer and use it in GitHub Desktop.
BlogPost
public class BlogPost
{
[Key]
public int PostId { get; set; }
[Required]
public string Creator { get; set; }
[Required]
public string Title { get; set; }
[Required]
public string Body { get; set; }
[Required]
public DateTime Dt { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment