mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
17 lines
309 B
C#
17 lines
309 B
C#
namespace Producer.Features.Wordlists;
|
|
|
|
public interface IWordCollections
|
|
{
|
|
HashSet<string> AdultWords { get; }
|
|
|
|
HashSet<string> AdultCompoundPhrases { get; }
|
|
|
|
HashSet<string> CommonWords { get; }
|
|
|
|
HashSet<string> Jav { get; }
|
|
|
|
HashSet<string> AdultStars { get; }
|
|
|
|
Task LoadAsync();
|
|
}
|