2019-01-13 20:03:10 +00:00
|
|
|
using System.Collections.Generic;
|
2016-07-26 03:29:05 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Tests.ConsistencyTests.TextIndexing
|
|
|
|
{
|
|
|
|
public class WordOccurrences : List<WordOccurrence>
|
|
|
|
{
|
|
|
|
public void AddOccurrence(string fileName, string fullPath, int lineNumber, int wordIndex)
|
|
|
|
{
|
|
|
|
this.Add(new WordOccurrence(fileName, fullPath, lineNumber, wordIndex));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|