Generator Changes at 11/25/2025 1:59:23 AM +03:30

This commit is contained in:
masoodafar-web
2025-11-25 02:03:51 +03:30
parent 87842f0b9b
commit 92a9a0e75d
77 changed files with 164 additions and 138 deletions
@@ -10,6 +10,8 @@ public class CreateNewUserWalletRequestValidator : AbstractValidator<CreateNewUs
.NotNull();
RuleFor(model => model.Balance)
.NotNull();
RuleFor(model => model.NetworkBalance)
.NotNull();
}
public Func<object, string, Task<IEnumerable<string>>> ValidateValue => async (model, propertyName) =>
{
@@ -12,6 +12,8 @@ public class UpdateUserWalletRequestValidator : AbstractValidator<UpdateUserWall
.NotNull();
RuleFor(model => model.Balance)
.NotNull();
RuleFor(model => model.NetworkBalance)
.NotNull();
}
public Func<object, string, Task<IEnumerable<string>>> ValidateValue => async (model, propertyName) =>
{