11 lines
271 B
C#
11 lines
271 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Best.HTTP.Shared.Databases.MetadataIndexFinders
|
|
{
|
|
public interface IEmptyMetadataIndexFinder<MetadataType> where MetadataType : Metadata
|
|
{
|
|
int FindFreeIndex(List<MetadataType> metadatas);
|
|
}
|
|
}
|