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