Files
qrcodeService/QRCodeService/Infrastructure/Middlewares/CheckSignAttribute.cs

19 lines
373 B
C#

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;
}
}
}