| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- namespace WeEngine.CommonDto
- {
- public class RoundScoreInfo
- {
- public string No { get; set; }
- public int RoundIndex { get; set; }
- public decimal RoundScore { get; set; }
- public decimal TotalScore { get; set; }
- public string KeyWords { get; set; }
- public List<TagScoreInfo> TagScores { get; set; }
- }
- [Serializable]
- public class TagScoreInfo
- {
- public string TagNo { get; set; }
- public decimal CorrectionScore { get; set; }
- public decimal SystemScore { get; set; }
- public decimal TotalScore { get; set; }
- }
- }
|