You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
492 B

using CellularManagement.Domain.Common;
using MediatR;
using CellularManagement.Application.Features.Auth.Models;
namespace CellularManagement.Application.Features.Auth.Commands.EmailLogin;
/// <summary>
/// 邮箱登录命令
/// </summary>
public sealed record EmailLoginCommand(
/// <summary>
/// 邮箱
/// </summary>
string Email,
/// <summary>
/// 验证码
/// </summary>
string VerificationCode) : IRequest<OperationResult<EmailLoginResponse>>;