Advertisement
Guest User

Untitled

a guest
Oct 24th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. namespace blog.Data
  2. {
  3. public class Post
  4. {
  5. public int PostId { get; set; }
  6. public string Title { get; set; }
  7. public string Content { get; set; }
  8. public int Category { get; set; }
  9. public string PublishDate { get; set; }
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement