PageRenderTime 46ms CodeModel.GetById 16ms RepoModel.GetById 1ms app.codeStats 0ms

/Source/Samples/Blog/Bifrost.Samples.Blog.Views/Posts/Comment.cs

#
C# | 18 lines | 15 code | 3 blank | 0 comment | 0 complexity | 1fc0ec2bf7d1d07698aa9b2300e93f04 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. using System;
  2. using Bifrost.Views;
  3. namespace Bifrost.Samples.Blog.Views.Posts
  4. {
  5. public class Comment : IHaveId
  6. {
  7. public Guid Id { get; set; }
  8. public Guid PostId { get; set; }
  9. public string Author { get; set; }
  10. public string EMail { get; set; }
  11. public string Url { get; set; }
  12. public string Body { get; set; }
  13. public DateTime Occured { get; set; }
  14. }
  15. }