sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Identity/CaptchaAttribute.cs

14 lines
188 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
namespace Sozsoft.Platform.Identity;
[AttributeUsage(AttributeTargets.Method)]
public class CaptchaAttribute : Attribute
{
public CaptchaAttribute()
{
}
}