diff --git a/Partition.cs b/Partition.cs
index ec42e0781..ad86bf2da 100644
--- a/Partition.cs
+++ b/Partition.cs
@@ -53,6 +53,8 @@ namespace DiscImageChef.CommonTypes
public ulong PartitionSectors;
/// Information that does not find space in this struct
public string PartitionDescription;
+ /// LBA of last partition sector
+ public ulong PartitionEndSector { get { return PartitionStartSector + PartitionSectors - 1; }}
}
}