WeCmdMatchSuccessDto.cs 580 B

123456789101112131415161718192021222324
  1. using WeEngine.Enum;
  2. namespace WeEngine.CommonDto.WeInfo
  3. {
  4. public class WeCmdMatchSuccessDto
  5. {
  6. public WeCmdMatchSuccessDto(string no, string path, string word, BehaviorScoreType scoreType)
  7. {
  8. No = no;
  9. Path = path;
  10. Word = word;
  11. ScoreType = scoreType;
  12. }
  13. public WeCmdMatchSuccessDto()
  14. {
  15. }
  16. public string No { get; set; }
  17. public string Word { get; set; }
  18. public string Path { get; set; }
  19. public BehaviorScoreType ScoreType { get; set; }
  20. }
  21. }