mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-07-01 12:40:25 +03:00
14 lines
284 B
C#
14 lines
284 B
C#
using X86Disassembler.Analysers;
|
|
|
|
namespace X86Disassembler.ProjectSystem;
|
|
|
|
public class ProjectPeFileSection
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public Address VirtualAddress { get; set; }
|
|
|
|
public ulong Size { get; set; }
|
|
|
|
public SectionFlags Flags { get; set; }
|
|
} |