19 lines
373 B
C#
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;
|
|
}
|
|
}
|
|
}
|