/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
- using System;
- using Bifrost.Views;
-
- namespace Bifrost.Samples.Blog.Views.Posts
- {
- public class Comment : IHaveId
- {
- public Guid Id { get; set; }
-
- public Guid PostId { get; set; }
-
- public string Author { get; set; }
- public string EMail { get; set; }
- public string Url { get; set; }
- public string Body { get; set; }
- public DateTime Occured { get; set; }
- }
- }