mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-20 04:18:51 -07:00
18 lines
456 B
C#
18 lines
456 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
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));
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|