/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
- using Bifrost.Commands;
-
- namespace Bifrost.Samples.Blog.Domain.Blogs.Commands
- {
- public class CreateBlog : Command
- {
- public string Name { get; set; }
- public string TagLine { get; set; }
- public string Owner { get; set; }
- }
- }