using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Vote.Services.Dto
{
///
///
///
public class NbzcInput
{
}
///
///
///
public class NbzcGetMyInfoInput
{
///
///
///
//[Required]
public string token { get; set; }
///
///
///
public string phone { get; set; }
///
///
///
//[Required]
public string code { get; set; }
}
///
///
///
public class NbzcGetListInput
{
///
///
///
//[Required]
public string phone { get; set; }
}
///
///
///
public class NbzcSendCodeInput
{
///
///
///
[Required]
public string phone { get; set; }
///
///
///
public string cardno { get; set; }
}
///
///
///
public class NbzcGetNumberInput
{
///
///
///
[Required]
public string date { get; set; }
///
///
///
//[Required]
public string line { get; set; }
}
///
///
///
public class NbzcSubmitInput
{
///
///
///
[Required]
public string code { get; set; }
///
///
///
[Required]
public string phone { get; set; }
///
///
///
public string address { get; set; }
///
///
///
[Required]
public string cardno { get; set; }
///
///
///
[Required]
public string date { get; set; }
///
///
///
public string hangye { get; set; }
///
///
///
[Required]
public string line { get; set; }
///
///
///
[Required]
public string weixin_number { get; set; }
///
///
///
[Required]
public string name { get; set; }
}
}