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 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; } } }