| 12345678910111213141516171819 |
- using System.Collections.Generic;
- namespace WeEngine.CommonDto.WeInfo
- {
- public class WePackageDto
- {
- public string Id { get; set; }
- public string PackageName { get; set; }
- public string EngineModelNo { get; set; }
- public string EngineModelName { get; set; }
- public int EngineModelType { get; set; }
- public string SceneCategory { get; set; }
- public string SceneCategoryName { get; set; }
- public string Variable { get; set; }
- public List<WeRoleDto> AllRoles { get; set; }
- public string AssessRoleNames { get; set; }
- public bool AssessAuto { get; set; }
- }
- }
|