27 lines
721 B
C#
27 lines
721 B
C#
using EnvelopeGenerator.Application.Common.Query;
|
|
using MediatR;
|
|
|
|
namespace EnvelopeGenerator.Application.Annotations.Commands;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public record CreateAnnotationCommand : EnvelopeReceiverQueryBase, IRequest;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class CreateAnnotationCommandHandler : IRequestHandler<CreateAnnotationCommand>
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <param name="cancel"></param>
|
|
/// <returns></returns>
|
|
/// <exception cref="NotImplementedException"></exception>
|
|
public Task Handle(CreateAnnotationCommand request, CancellationToken cancel)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |