ShanxiKnowledgeBase/SXElectricityInformationAcq.../Assets/Scripts/Dto/SubmitScoreDto.cs

23 lines
657 B
C#

using System.Collections.Generic;
namespace DefaultNamespace.Dto
{
public class SubmitScoreStep
{
public string stepName { get; set; }
public string testPoint { get; set; }
public float score { get; set; }
public float setScore { get; set; }
}
public class SubmitScoreData
{
public string userName { get; set; }
public string userId { get; set; }
public int examId { get; set; }
public int classId { get; set; }
public string useTime { get; set; }
public string examClassId { get; set; }
public List<SubmitScoreStep> stepList { get; set; }
}
}