Guest User

Untitled

a guest
Oct 15th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. using System;
  2.  
  3. namespace PaperCssDemo.Models
  4. {
  5. public class Article
  6. {
  7. public int Id { get; set; }
  8. public string Author { get; set; }
  9. public string Title { get; set; }
  10. public string Content { get; set; }
  11. public DateTime CreationDate { get; set; }
  12. }
  13. }
Add Comment
Please, Sign In to add comment