using Microsoft.EntityFrameworkCore;
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;
using VOL.Entity.Enum;
namespace VOL.Model.Norm.Response
{
///
/// 活动学生详情
///
public class ActivitiesStudentDetailsModel
{
///
/// 是否参加
///
public bool IsParticipate { get; set; }
///
///学生学号
///
public string StudentNo { get; set; }
///
///学生名称
///
public string StudentName { get; set; }
///
///性别
///
public SexType Sex { get; set; }
///
///年龄
///
public int Age { get; set; }
///
///学生照片
///
public string Photo { get; set; }
}
}