blob: 821a74d21b64ef9a26f57ca85b284352b7aa58cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System.Collections.Generic;
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));
}
}
}
|