35 lines
833 B
C#
35 lines
833 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 赛事报名详情
|
|
/// </summary>
|
|
public class ActivitiesEntryDetailsModel
|
|
{
|
|
/// <summary>
|
|
/// 赛事Id
|
|
/// </summary>
|
|
public int ActivitiesId { get; set; }
|
|
/// <summary>
|
|
///赛事名称
|
|
/// </summary>
|
|
public string ActivitiesName { get; set; }
|
|
/// <summary>
|
|
/// 参赛对象
|
|
/// </summary>
|
|
public string Participants { get; set; }
|
|
|
|
/// <summary>
|
|
/// 报名学生列表
|
|
/// </summary>
|
|
public List<G_EntryStudent> EntryStudents { get; set; }
|
|
}
|
|
}
|