/Source/Samples/Blog/Bifrost.Samples.Blog.Domain/Blogs/Commands/CreateBlog.cs

# · C# · 11 lines · 10 code · 1 blank · 0 comment · 0 complexity · d0c9e81ba49fb8709877e1e184944b37 MD5 · raw file

  1. using Bifrost.Commands;
  2. namespace Bifrost.Samples.Blog.Domain.Blogs.Commands
  3. {
  4. public class CreateBlog : Command
  5. {
  6. public string Name { get; set; }
  7. public string TagLine { get; set; }
  8. public string Owner { get; set; }
  9. }
  10. }