mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			374 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			374 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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));
 | 
						|
        }
 | 
						|
 | 
						|
    }
 | 
						|
}
 |