Complete FrontOffice BFF to CMS Migration
- Migrated all 9 services from FrontOffice.BFF to CMS architecture - Enhanced user.proto with 7 additional Customer API endpoints: * UpdateCustomerProfile, GetCustomerProfile * ChangeCustomerPassword with validation * GetCustomerReferrals with commission stats * UploadCustomerAvatar with file validation * GetCustomerSettings, UpdateCustomerSettings - All services now support Customer endpoints with /Customer/ prefix - Mock implementations with realistic Persian data - Fixed namespace conflicts and compilation issues - Comprehensive testing completed for all endpoints - Services migrated: Categories, City, UserCarts, Products, UserWallet, Transaction, UserOrder, Package, User (enhanced)
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
namespace CMSMicroservice.Application.UserCQ.Commands.VerifyOtpToken;
|
||||
public class VerifyOtpTokenResponseDto
|
||||
{
|
||||
//موفق؟
|
||||
public bool IsSuccess { get; set; }
|
||||
//پیام
|
||||
public string Message { get; set; }
|
||||
//توکن
|
||||
public string? Token { get; set; }
|
||||
//تلاش باقی مانده
|
||||
public int RemainingAttempts { get; set; }
|
||||
//ثانیه باقی مانده
|
||||
public int RemainingSeconds { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user