Files
qrcodeService/QRCodeService/Application/Commands/CreateLinkCommand.cs
2021-02-23 09:51:50 +08:00

15 lines
257 B
C#

using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QRCodeService.Application.Commands
{
public class CreateLinkCommand : IRequest<bool>
{
}
}