25 lines
486 B
C#
25 lines
486 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace VOL.Model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 等级考试类别
|
|||
|
/// </summary>
|
|||
|
public class LevelExamSpecialModel
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 专项类型Id
|
|||
|
/// </summary>
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 专项类型
|
|||
|
/// </summary>
|
|||
|
public string SpecialName { get; set; }
|
|||
|
}
|
|||
|
}
|