using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 微信小程序登录
///
public class WxmpLoginCommand
{
///
/// 用户登录凭证
///
[Required]
public string Code { get; set; }
}
}