Skip to content

Commit

Permalink
Make IProperty and related internal
Browse files Browse the repository at this point in the history
  • Loading branch information
Numpsy authored and jeremy-visionaid committed Nov 19, 2024
1 parent f950d38 commit 029bc49
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion OpenMcdf.Ole/DictionaryProperty.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace OpenMcdf.Ole;

public sealed class DictionaryProperty : IProperty
internal sealed class DictionaryProperty : IProperty
{
private readonly int codePage;
private Dictionary<uint, string>? entries = new();
Expand Down
4 changes: 2 additions & 2 deletions OpenMcdf.Ole/IProperty.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
namespace OpenMcdf.Ole;

public enum PropertyType
internal enum PropertyType
{
TypedPropertyValue = 0,
DictionaryProperty = 1
}

public interface IProperty : IBinarySerializable
internal interface IProperty : IBinarySerializable
{
object? Value { get; set; }

Expand Down
2 changes: 1 addition & 1 deletion OpenMcdf.Ole/ITypedPropertyValue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public enum PropertyDimensions
IsArray
}

public interface ITypedPropertyValue : IProperty
internal interface ITypedPropertyValue : IProperty
{
VTPropertyType VTType { get; }

Expand Down

0 comments on commit 029bc49

Please sign in to comment.