PageRenderTime 37ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/Source/Samples/Blog/Bifrost.Samples.Blog.Domain/Posts/Commands/AddCommentToPost.cs

#
C# | 14 lines | 13 code | 1 blank | 0 comment | 0 complexity | 22a5d786b498886c986bd748f41cfaeb MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. using System;
  2. using Bifrost.Commands;
  3. namespace Bifrost.Samples.Blog.Domain.Posts.Commands
  4. {
  5. public class AddCommentToPost : Command
  6. {
  7. public string Author { get; set; }
  8. public string EMail { get; set; }
  9. public string Url { get; set; }
  10. public string Comment { get; set; }
  11. public DateTime Occured { get; set; }
  12. }
  13. }