using MediatR; using System; namespace Microsoft.eShopOnContainers.Services.Ordering.API.Application.Commands { public class IdentifiedCommand : IRequest where T : IRequest { public T Command { get; } public Guid Id { get; } public IdentifiedCommand(T command, Guid id) { Command = command; Id = id; } } }