using MediatR; namespace Printbase.Application.Products.Commands; public class DeleteProductCommand : IRequest { public Guid Id { get; set; } }