Generator Changes at 9/28/2025 12:17:26 AM

This commit is contained in:
MeysamMoghaddam
2025-09-28 00:19:54 +03:30
parent c7b641bca9
commit 314e2ab425
40 changed files with 248 additions and 1459 deletions

View File

@@ -0,0 +1,11 @@
namespace FrontOffice.BFF.Application.UserCQ.Commands.CreateNewOtpToken;
public class CreateNewOtpTokenResponseDto
{
//موفق؟
public bool Success { get; set; }
//پیام
public string Message { get; set; }
//کد
public string? Code { get; set; }
}