27 lines
648 B
TypeScript
27 lines
648 B
TypeScript
/**
|
|
* PyroFetes
|
|
*
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
import { CustomAttributeData } from './custom-attribute-data';
|
|
import { Assembly } from './assembly';
|
|
import { ModuleHandle } from './module-handle';
|
|
|
|
|
|
export interface Module {
|
|
assembly?: Assembly;
|
|
fullyQualifiedName?: string;
|
|
name?: string;
|
|
mdStreamVersion?: number;
|
|
moduleVersionId?: string;
|
|
scopeName?: string;
|
|
moduleHandle?: ModuleHandle;
|
|
customAttributes?: Array<CustomAttributeData>;
|
|
metadataToken?: number;
|
|
}
|
|
|