mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-06-20 00:18:02 +03:00
Refactor: Move classes to separate files with one-liner namespace style
This commit is contained in:
9
X86Disassembler/PE/DataDirectory.cs
Normal file
9
X86Disassembler/PE/DataDirectory.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace X86Disassembler.PE;
|
||||
/// <summary>
|
||||
/// Represents a data directory in the optional header
|
||||
/// </summary>
|
||||
public class DataDirectory
|
||||
{
|
||||
public uint VirtualAddress; // RVA of the table
|
||||
public uint Size; // Size of the table
|
||||
}
|
Reference in New Issue
Block a user