using MediatR;
namespace PromotionService.API.Application.Commands;
///
/// EN: Command to change status of a Sample.
/// VI: Command để thay đổi trạng thái của Sample.
///
/// EN: Sample ID / VI: ID sample
/// EN: New status (activate, complete, cancel) / VI: Trạng thái mới (activate, complete, cancel)
public record ChangeSampleStatusCommand(
Guid SampleId,
string NewStatus
) : IRequest;