diff --git a/Partition.cs b/Partition.cs
index 66fb5c3..a14a9b3 100644
--- a/Partition.cs
+++ b/Partition.cs
@@ -60,7 +60,7 @@ namespace Aaru.CommonTypes
/// Information that does not find space in this struct
public string Description;
/// LBA of last partition sector
- public ulong End => Start + Length - 1;
+ public readonly ulong End => Start + Length - 1;
/// Name of partition scheme that contains this partition
public string Scheme;