From 5944f710bc21fed41db56c5929e372f9d9181d02 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sun, 23 Jul 2017 22:54:36 +0100 Subject: [PATCH] Add field to propagate partition scheme on each partition. --- Partition.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Partition.cs b/Partition.cs index 930b20d..3a0dfc6 100644 --- a/Partition.cs +++ b/Partition.cs @@ -55,6 +55,8 @@ namespace DiscImageChef.CommonTypes public string Description; /// LBA of last partition sector public ulong End { get { return Start + Length - 1; }} + /// Name of partition scheme that contains this partition + public string Scheme; } }