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