- Initial commit
This commit is contained in:
@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Best.HTTP.Shared.Databases.MetadataIndexFinders
|
||||
{
|
||||
public sealed class DefaultEmptyMetadataIndexFinder<MetadataType> : IEmptyMetadataIndexFinder<MetadataType> where MetadataType : Metadata
|
||||
{
|
||||
public int FindFreeIndex(List<MetadataType> metadatas)
|
||||
{
|
||||
return metadatas.Count;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user