using System; using System.Collections.Generic; namespace Best.HTTP.Shared.Databases.MetadataIndexFinders { public sealed class DefaultEmptyMetadataIndexFinder : IEmptyMetadataIndexFinder where MetadataType : Metadata { public int FindFreeIndex(List metadatas) { return metadatas.Count; } } }