using MediatR;
namespace MyService.API.Application.Commands;
///
/// EN: Command to create a new Sample.
/// VI: Command để tạo một Sample mới.
///
/// EN: Sample name / VI: Tên sample
/// EN: Optional description / VI: Mô tả tùy chọn
public record CreateSampleCommand(
string Name,
string? Description
) : IRequest;
///
/// EN: Result of CreateSampleCommand.
/// VI: Kết quả của CreateSampleCommand.
///
/// EN: Created sample ID / VI: ID sample đã tạo
public record CreateSampleCommandResult(Guid Id);