using MediatR;
namespace MissionService.API.Application.Commands;
///
/// EN: Command to update an existing Sample.
/// VI: Command để cập nhật một Sample đã tồn tại.
///
/// EN: Sample ID to update / VI: ID sample cần cập nhật
/// EN: New name / VI: Tên mới
/// EN: New description / VI: Mô tả mới
public record UpdateSampleCommand(
Guid SampleId,
string Name,
string? Description
) : IRequest;