This commit is contained in:
mmrbnjd
2025-06-29 16:14:42 +03:30
parent 86de5d3e39
commit bc65878608
7 changed files with 165 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hushian.Application.Validation
{
public static class FixedValidation
{
public static bool CheckLawPassword(this string newPassword,ref List<string> errors)
{
return true;
}
}
}