/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
- using System;
- using Bifrost.Commands;
-
- namespace Bifrost.Samples.Blog.Domain.Posts.Commands
- {
- public class AddCommentToPost : Command
- {
- public string Author { get; set; }
- public string EMail { get; set; }
- public string Url { get; set; }
- public string Comment { get; set; }
- public DateTime Occured { get; set; }
- }
- }