using MediatR; namespace CMSMicroservice.Application.BlogPostCQ.Commands.DeleteBlogPost; public class DeleteBlogPostCommand : IRequest { public long Id { get; set; } }