blob: a6388ab54d1def0c816770ad92793e2bcc89dbde (
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));
}
}
}
|