21 lines
477 B
C#
21 lines
477 B
C#
using Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure;
|
|
|
|
namespace CompetitionAPI.api.unity
|
|
{
|
|
/// <summary>
|
|
/// 更新未分闸状态拉合熔芯扣分接口请求实体
|
|
/// </summary>
|
|
public class UpdateFusibleCoreRequest
|
|
{
|
|
/// <summary>
|
|
/// 用户id
|
|
/// </summary>
|
|
public string UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 考试id
|
|
/// </summary>
|
|
public string ExamId { get; set; }
|
|
}
|
|
}
|