/Source/Samples/Blog/Bifrost.Samples.Blog.Domain/Tags/Commands/DeleteTag.cs

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

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