using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace QRCodeService.Infrastructure.Middlewares { public class CheckSignAttribute:Attribute { public Type ModelType { get; set; } public CheckSignAttribute(Type type) { ModelType = type; } } }