14 lines
188 B
C#
14 lines
188 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Platform.Identity;
|
|||
|
|
|
|||
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|||
|
|
public class CaptchaAttribute : Attribute
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public CaptchaAttribute()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|