19 lines
471 B
C#
19 lines
471 B
C#
using MediatR;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace QRCodeService.Application.Commands
|
|
{
|
|
public class CreateLinkCommandHandler : IRequestHandler<CreateLinkCommand, bool>
|
|
{
|
|
public Task<bool> Handle(CreateLinkCommand request, CancellationToken cancellationToken)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|