RoundScoreInfo.cs 661 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace WeEngine.CommonDto
  4. {
  5. public class RoundScoreInfo
  6. {
  7. public string No { get; set; }
  8. public int RoundIndex { get; set; }
  9. public decimal RoundScore { get; set; }
  10. public decimal TotalScore { get; set; }
  11. public string KeyWords { get; set; }
  12. public List<TagScoreInfo> TagScores { get; set; }
  13. }
  14. [Serializable]
  15. public class TagScoreInfo
  16. {
  17. public string TagNo { get; set; }
  18. public decimal CorrectionScore { get; set; }
  19. public decimal SystemScore { get; set; }
  20. public decimal TotalScore { get; set; }
  21. }
  22. }