using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_WeChatApplet.Commons.Dto.ClientSide
{
///
/// 学校账号预约
///
public class SchoolAccountApplicationDto
{
///
///学校名称
///
public string SchoolName { get; set; }
///
///学校地址
///
public string SchoolAddress { get; set; }
///
/// 用户姓名
///
public string UserName { get; set; }
///
/// 联系电话
///
public string PhoneNo { get; set; }
///
///备注
///
public string Remarks { get; set; }
}
}