using WeEngine.Enum; namespace WeEngine.CommonDto.WeInfo { public class WeCmdMatchSuccessDto { public WeCmdMatchSuccessDto(string no, string path, string word, BehaviorScoreType scoreType) { No = no; Path = path; Word = word; ScoreType = scoreType; } public WeCmdMatchSuccessDto() { } public string No { get; set; } public string Word { get; set; } public string Path { get; set; } public BehaviorScoreType ScoreType { get; set; } } }