Export GPT class

This commit is contained in:
Gustave Monce
2024-06-24 19:18:51 +02:00
parent 8be6f33691
commit 360daf63ef
+3 -3
View File
@@ -49,7 +49,7 @@ namespace UnifiedFlashingPlatform
{
}
internal GPT(byte[] GPTBuffer, uint SectorSize)
public GPT(byte[] GPTBuffer, uint SectorSize)
{
this.GPTBuffer = GPTBuffer;
this.SectorSize = SectorSize;
@@ -569,7 +569,7 @@ namespace UnifiedFlashingPlatform
}
[XmlIgnore]
internal ulong FirstSector // 0x08
public ulong FirstSector // 0x08
{
get => _FirstSector;
set
@@ -583,7 +583,7 @@ namespace UnifiedFlashingPlatform
}
[XmlIgnore]
internal ulong LastSector // 0x08
public ulong LastSector // 0x08
{
get => _LastSector;
set