From 501499ade6aab6be622f5cd134d5b5e88ed67007 Mon Sep 17 00:00:00 2001
From: Jeremy Powell <jeremy@visionaid.com>
Date: Fri, 20 Sep 2024 14:17:03 +1200
Subject: [PATCH] Fix hiding inherited member (CS0108)

---
 .../OLEProperties/Interfaces/IDictionaryProperty.cs         | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/sources/OpenMcdf.Extensions/OLEProperties/Interfaces/IDictionaryProperty.cs b/sources/OpenMcdf.Extensions/OLEProperties/Interfaces/IDictionaryProperty.cs
index 895dc43a..d5b86761 100644
--- a/sources/OpenMcdf.Extensions/OLEProperties/Interfaces/IDictionaryProperty.cs
+++ b/sources/OpenMcdf.Extensions/OLEProperties/Interfaces/IDictionaryProperty.cs
@@ -1,10 +1,6 @@
-using System.IO;
-
-namespace OpenMcdf.Extensions.OLEProperties.Interfaces
+namespace OpenMcdf.Extensions.OLEProperties.Interfaces
 {
     public interface IDictionaryProperty : IProperty
     {
-        void Read(BinaryReader br);
-        void Write(BinaryWriter bw);
     }
 }
\ No newline at end of file