sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Identity/CaptchaAttribute.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

13 lines
188 B
C#

using System;
namespace Sozsoft.Platform.Identity;
[AttributeUsage(AttributeTargets.Method)]
public class CaptchaAttribute : Attribute
{
public CaptchaAttribute()
{
}
}