Generator Changes at 11/16/2025 3:28:55 AM +03:30

This commit is contained in:
masoodafar-web
2025-11-16 03:31:23 +03:30
parent eed625c722
commit 32ee9a03dc
4 changed files with 15 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
namespace FrontOffice.BFF.Application.UserCQ.Commands.AcceptContract;
public record AcceptContractCommand : IRequest<Unit>
public record AcceptContractCommand : IRequest<AcceptContractResponseDto>
{
//کد otp
public string Code { get; init; }

View File

@@ -0,0 +1,7 @@
namespace FrontOffice.BFF.Application.UserCQ.Commands.AcceptContract;
public class AcceptContractResponseDto
{
//توکن
public string Token { get; set; }
}