Tz2/Assets/Framework/Dto/SubmitScoreDto.cs

14 lines
292 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; }
}
}