/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
- using System;
- using Bifrost.Commands;
-
- namespace Bifrost.Samples.Blog.Domain.Tags.Commands
- {
- public class DeleteTag : ICommand
- {
- public Guid Id { get; set; }
- }
- }