assembly.ts 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /* tslint:disable */
  2. /* eslint-disable */
  3. /**
  4. * Admin.NET 通用权限开发平台
  5. * 让 .NET 开发更简单、更通用、更流行。整合最新技术,模块插件式开发,前后端分离,开箱即用。<br/><u><b><font color='FF0000'> 👮不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任!</font></b></u>
  6. *
  7. * OpenAPI spec version: 1.0.0
  8. *
  9. *
  10. * NOTE: This class is auto generated by the swagger code generator program.
  11. * https://github.com/swagger-api/swagger-codegen.git
  12. * Do not edit the class manually.
  13. */
  14. import { CustomAttributeData } from './custom-attribute-data';
  15. import { MethodInfo } from './method-info';
  16. import { Module } from './module';
  17. import { SecurityRuleSet } from './security-rule-set';
  18. import { Type } from './type';
  19. import { TypeInfo } from './type-info';
  20. /**
  21. *
  22. * @export
  23. * @interface Assembly
  24. */
  25. export interface Assembly {
  26. /**
  27. *
  28. * @type {Array<TypeInfo>}
  29. * @memberof Assembly
  30. */
  31. definedTypes?: Array<TypeInfo> | null;
  32. /**
  33. *
  34. * @type {Array<Type>}
  35. * @memberof Assembly
  36. */
  37. exportedTypes?: Array<Type> | null;
  38. /**
  39. *
  40. * @type {string}
  41. * @memberof Assembly
  42. */
  43. codeBase?: string | null;
  44. /**
  45. *
  46. * @type {MethodInfo}
  47. * @memberof Assembly
  48. */
  49. entryPoint?: MethodInfo;
  50. /**
  51. *
  52. * @type {string}
  53. * @memberof Assembly
  54. */
  55. fullName?: string | null;
  56. /**
  57. *
  58. * @type {string}
  59. * @memberof Assembly
  60. */
  61. imageRuntimeVersion?: string | null;
  62. /**
  63. *
  64. * @type {boolean}
  65. * @memberof Assembly
  66. */
  67. isDynamic?: boolean;
  68. /**
  69. *
  70. * @type {string}
  71. * @memberof Assembly
  72. */
  73. location?: string | null;
  74. /**
  75. *
  76. * @type {boolean}
  77. * @memberof Assembly
  78. */
  79. reflectionOnly?: boolean;
  80. /**
  81. *
  82. * @type {boolean}
  83. * @memberof Assembly
  84. */
  85. isCollectible?: boolean;
  86. /**
  87. *
  88. * @type {boolean}
  89. * @memberof Assembly
  90. */
  91. isFullyTrusted?: boolean;
  92. /**
  93. *
  94. * @type {Array<CustomAttributeData>}
  95. * @memberof Assembly
  96. */
  97. customAttributes?: Array<CustomAttributeData> | null;
  98. /**
  99. *
  100. * @type {string}
  101. * @memberof Assembly
  102. */
  103. escapedCodeBase?: string | null;
  104. /**
  105. *
  106. * @type {Module}
  107. * @memberof Assembly
  108. */
  109. manifestModule?: Module;
  110. /**
  111. *
  112. * @type {Array<Module>}
  113. * @memberof Assembly
  114. */
  115. modules?: Array<Module> | null;
  116. /**
  117. *
  118. * @type {boolean}
  119. * @memberof Assembly
  120. */
  121. globalAssemblyCache?: boolean;
  122. /**
  123. *
  124. * @type {number}
  125. * @memberof Assembly
  126. */
  127. hostContext?: number;
  128. /**
  129. *
  130. * @type {SecurityRuleSet}
  131. * @memberof Assembly
  132. */
  133. securityRuleSet?: SecurityRuleSet;
  134. }