diff --git a/ICD.Common.Utils/IO/IcdFileStream.cs b/ICD.Common.Utils/IO/IcdFileStream.cs index 524ba3a..84109fb 100644 --- a/ICD.Common.Utils/IO/IcdFileStream.cs +++ b/ICD.Common.Utils/IO/IcdFileStream.cs @@ -8,8 +8,6 @@ namespace ICD.Common.Utils.IO { public sealed class IcdFileStream : IcdStream { - public int Position { get; set; } - public FileStream WrappedFileStream { get { return WrappedStream as FileStream; } } /// diff --git a/ICD.Common.Utils/IO/IcdMemoryStream.cs b/ICD.Common.Utils/IO/IcdMemoryStream.cs index eb8c1a5..f034fc3 100644 --- a/ICD.Common.Utils/IO/IcdMemoryStream.cs +++ b/ICD.Common.Utils/IO/IcdMemoryStream.cs @@ -8,8 +8,6 @@ namespace ICD.Common.Utils.IO { public sealed class IcdMemoryStream : IcdStream { - public int Position { get; set; } - public MemoryStream WrappedMemoryStream { get { return WrappedStream as MemoryStream; } } ///