classes/AssemblyResult.ps1

class AssemblyResult {
    [bool]$Success
    [string]$ErrorMessage
    [UInt16]$LoadAddress
    [Scope[]]$Scopes
    [object[]]$Symbols
    [object[]]$SymbolsFull
    [string]$PSSource
    [object[]]$Segments
    [string]$SegmentInfo
    [array]$Assembly
    [string]$AssemblyList
    [byte[]]$Binary
    [string]$BinaryList
    [string]$BinaryHash
    [Token[]]$Tokens

    AssemblyResult() {}
}