jellyfin-server/MediaBrowser.Tests/ConsistencyTests/TextIndexing/WordOccurrences.cs
softworkz aa434d591e Add StringUsageReporter
StringUsageReporter reports usages of localization strings in the web
application and can also list all unused strings
2016-07-26 05:34:32 +02:00

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));
}
}
}