From 1d1512d663ab443e100aabe6644e238b8ad5056d Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Wed, 19 Jul 2017 16:31:08 +0100 Subject: [PATCH] Refactor, pass whole partition structure to filesystems. --- Partition.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Partition.cs b/Partition.cs index ec42e07..ad86bf2 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; }} } }