diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs
index 9d520cf6f..923673bd8 100644
--- a/MediaBrowser.Controller/Entities/BaseItem.cs
+++ b/MediaBrowser.Controller/Entities/BaseItem.cs
@@ -229,6 +229,8 @@ namespace MediaBrowser.Controller.Entities
}
}
+ public bool IsUnidentified { get; set; }
+
///
/// Gets or sets the locked fields.
///
diff --git a/MediaBrowser.Controller/Entities/IHasMetadata.cs b/MediaBrowser.Controller/Entities/IHasMetadata.cs
index 7182d086a..91f37135f 100644
--- a/MediaBrowser.Controller/Entities/IHasMetadata.cs
+++ b/MediaBrowser.Controller/Entities/IHasMetadata.cs
@@ -36,12 +36,6 @@ namespace MediaBrowser.Controller.Entities
/// The date last saved.
DateTime DateLastSaved { get; set; }
- ///
- /// Gets a value indicating whether this instance is in mixed folder.
- ///
- /// true if this instance is in mixed folder; otherwise, false.
- bool IsInMixedFolder { get; }
-
///
/// Updates to repository.
///
@@ -55,5 +49,11 @@ namespace MediaBrowser.Controller.Entities
///
/// true if XXXX, false otherwise.
bool BeforeMetadataRefresh();
+
+ ///
+ /// Gets or sets a value indicating whether this instance is unidentified.
+ ///
+ /// true if this instance is unidentified; otherwise, false.
+ bool IsUnidentified { get; set; }
}
}