9 lines
289 B
C#
9 lines
289 B
C#
namespace CMSMicroservice.Application.OtpTokenCQ.Commands.CreateNewOtpToken;
|
|
public record CreateNewOtpTokenCommand : IRequest<CreateNewOtpTokenResponseDto>
|
|
{
|
|
//موبایل مقصد
|
|
public string Mobile { get; init; }
|
|
//مقصود
|
|
public string Purpose { get; init; }
|
|
|
|
} |