From f52ab833c11252b3deb88660646d8937412a57db Mon Sep 17 00:00:00 2001 From: Simon G Date: Fri, 13 Nov 2020 13:19:23 +0100 Subject: [PATCH] - add setter of entry to interface --- GBase/Interfaces/FileHandling/IGBaseFile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GBase/Interfaces/FileHandling/IGBaseFile.cs b/GBase/Interfaces/FileHandling/IGBaseFile.cs index 9904130..fd0d0bd 100644 --- a/GBase/Interfaces/FileHandling/IGBaseFile.cs +++ b/GBase/Interfaces/FileHandling/IGBaseFile.cs @@ -9,7 +9,7 @@ namespace GBase.Interfaces.FileHandling { public interface IGBaseFile : IDisposable { - object Entry { get; } + object Entry { get; set; } FileStream File { get; } string FilePath { get; } bool InUse { get; }