using MediatR; namespace MyNewProjectName.Application.Features.Sample.Commands.CreateSample; /// /// Command to create a new sample /// public record CreateSampleCommand(string Name, string? Description) : IRequest;