WeBehaviorDto.cs 730 B

1234567891011121314151617181920
  1. namespace WeEngine.CommonDto.WeInfo
  2. {
  3. public class WeBehaviorDto
  4. {
  5. public string Id { get; set; }
  6. public string No { get; set; }
  7. public string Name { get; set; }
  8. public string Path { get; set; }
  9. public string ParentPath { get; set; }
  10. public string Variables { get; set; }
  11. public string BehaviorTag { get; set; }
  12. public string Description { get; set; }
  13. public int BehaviorScoreType { get; set; }
  14. public int RoleLogicType { get; set; }
  15. public string RoleNames { get; set; }
  16. public string RuleKeyword { get; set; }
  17. public string EnvironResourceNos { get; set; }
  18. public string KnowledgeNos { get; set; }
  19. }
  20. }