WePackageDto.cs 657 B

12345678910111213141516171819
  1. using System.Collections.Generic;
  2. namespace WeEngine.CommonDto.WeInfo
  3. {
  4. public class WePackageDto
  5. {
  6. public string Id { get; set; }
  7. public string PackageName { get; set; }
  8. public string EngineModelNo { get; set; }
  9. public string EngineModelName { get; set; }
  10. public int EngineModelType { get; set; }
  11. public string SceneCategory { get; set; }
  12. public string SceneCategoryName { get; set; }
  13. public string Variable { get; set; }
  14. public List<WeRoleDto> AllRoles { get; set; }
  15. public string AssessRoleNames { get; set; }
  16. public bool AssessAuto { get; set; }
  17. }
  18. }