Files
knightcrawler/src/producer/Features/Wordlists/IWordCollections.cs
iPromKnight 6c03f79933 Complete
2024-03-10 13:48:27 +00:00

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