mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-07-01 20:40:27 +03:00
14 lines
288 B
C#
14 lines
288 B
C#
![]() |
using X86Disassembler.Analysers;
|
|||
|
|
|||
|
namespace X86Disassembler.ProjectSystem;
|
|||
|
|
|||
|
public class ProjectPeFile
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
|
|||
|
public string Architecture { get; set; }
|
|||
|
|
|||
|
public Address EntryPointAddress { get; set; }
|
|||
|
|
|||
|
public Address ImageBase { get; set; }
|
|||
|
}
|