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

# · C# · 10 lines · 9 code · 1 blank · 0 comment · 0 complexity · 6d580b8f418e3801e4fb2f72c30ff752 MD5 · raw file

  1. using System;
  2. using Bifrost.Commands;
  3. namespace Bifrost.Samples.Blog.Domain.Posts.Commands
  4. {
  5. public class AddAttachmentToPost : ICommand
  6. {
  7. public Guid Id { get; set; }
  8. }
  9. }