using System.Collections.Generic; using WeEngine.CommonDto.WeInfo; using WeEngine.ComponentInfo; using WeEngine.ModelInfo; namespace WePlatform.WeLib.Package.Dto { public class PackageDetailDto { public string PackageNo { get; set; } public PackageDto Detail { get; set; } public List AllRoles { get; set; } public string AssessRoleNames { get; set; } public List Flows { get; set; } public List Scenes { get; set; } public List Behaviors { get; set; } public List Guides { get; set; } public List EnvironResources { get; set; } public List Components { get; set; } } }