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