using System;
using System.Collections.Generic;
using System.Text;

namespace GxPress.Request.User
{
    /// <summary>
    /// 用户邮箱验证
    /// </summary>
   public class UserEmailVerifyCodeRequest
    {
        /// <summary>
        /// 用户ID
        /// </summary>
        public int UserId { get; set; }
        /// <summary>
        /// 邮箱
        /// </summary>
        public string Email { get; set; }
    }
}