using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; using VOL.Entity.DomainModels; namespace VOL.Model { /// /// 赛事报名详情 /// public class ActivitiesEntryDetailsModel { /// /// 赛事Id /// public int ActivitiesId { get; set; } /// ///赛事名称 /// public string ActivitiesName { get; set; } /// /// 参赛对象 /// public string Participants { get; set; } /// /// 报名学生列表 /// public List EntryStudents { get; set; } } }