Refactoring, database structure changed
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using FluentValidation;
|
||||
|
||||
namespace WatchIt.DTO.Models.Controllers.Accounts.AccountPassword;
|
||||
|
||||
public class AccountPasswordRequestValidator : AbstractValidator<AccountPasswordRequest>
|
||||
{
|
||||
#region CONSTRUCTORS
|
||||
|
||||
public AccountPasswordRequestValidator()
|
||||
{
|
||||
Include(new PasswordEditRequestValidator());
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user