YD_SmartSports.Api/VOL.Model/Norm/Response/LevelExamSpecialModel.cs
2025-06-06 16:00:39 +08:00

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; }
}
}