From 734f3899472c453a8d8a87c872c28f2da1c4d491 Mon Sep 17 00:00:00 2001 From: OnSive Date: Thu, 5 Oct 2023 14:37:50 +0200 Subject: [PATCH] Made ICollectionPropertyTrackable public --- Source/ChangeTracking/ICollectionPropertyTrackable.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Source/ChangeTracking/ICollectionPropertyTrackable.cs b/Source/ChangeTracking/ICollectionPropertyTrackable.cs index 5f431d5..372cdf9 100644 --- a/Source/ChangeTracking/ICollectionPropertyTrackable.cs +++ b/Source/ChangeTracking/ICollectionPropertyTrackable.cs @@ -2,8 +2,11 @@ namespace ChangeTracking { - internal interface ICollectionPropertyTrackable + public interface ICollectionPropertyTrackable { + /// + /// Gets the list of all trackable collection properties. + /// IEnumerable CollectionPropertyTrackables { get; } } -} \ No newline at end of file +}