9 lines
245 B
C#
9 lines
245 B
C#
using MediatR;
|
|
|
|
namespace MyNewProjectName.Application.Features.Sample.Commands.CreateSample;
|
|
|
|
/// <summary>
|
|
/// Command to create a new sample
|
|
/// </summary>
|
|
public record CreateSampleCommand(string Name, string? Description) : IRequest<Guid>;
|