vgquotes/Src/VideoGameQuotes.Api/Search/ISearchIndexLocator.cs

15 lines
402 B
C#
Raw Normal View History

2011-02-17 05:30:31 +00:00
namespace VideoGameQuotes.Api.Search {
public interface ISearchIndexLocator {
string IndexDirectory { get; }
}
public class SearchIndexLocator : ISearchIndexLocator {
private readonly string indexDirectory;
public SearchIndexLocator(string indexDirectory) {
this.indexDirectory = indexDirectory;
}
public string IndexDirectory { get { return indexDirectory; } }
}
}