54 lines
1.1 KiB
C#
54 lines
1.1 KiB
C#
using System.Runtime.Serialization;
|
|
|
|
public class StepInfo
|
|
{
|
|
public int seq;
|
|
public string title;
|
|
public string startTime;
|
|
public string endTime;
|
|
public int timeUsed;
|
|
public int expectTime;
|
|
public int maxScore;
|
|
public int score;
|
|
public int repeatCount;
|
|
public string evaluation;
|
|
public string scoringModel;
|
|
public string remarks;
|
|
private string subModule;
|
|
private string answer;
|
|
private string yourAnswer;
|
|
private string stepType;
|
|
public void SetSubModule(string value)
|
|
{
|
|
subModule = value;
|
|
}
|
|
public string GetSubModule()
|
|
{
|
|
return subModule;
|
|
}
|
|
public void SetAnswer(string value)
|
|
{
|
|
answer = value;
|
|
}
|
|
public string GetAnswer()
|
|
{
|
|
return answer;
|
|
}
|
|
public void SetYourAnswer(string value)
|
|
{
|
|
yourAnswer = value;
|
|
}
|
|
public string GetYourAnswer()
|
|
{
|
|
return yourAnswer;
|
|
}
|
|
public void SetStepType(string value)
|
|
{
|
|
stepType = value;
|
|
}
|
|
public string GetStepType()
|
|
{
|
|
return stepType;
|
|
}
|
|
}
|