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 { public string SuffixUrl { get; set; } } }