mirror of
https://github.com/Jetsparrow/antiantiswearingbot.git
synced 2026-01-20 23:16:08 +03:00
29 lines
639 B
C#
29 lines
639 B
C#
namespace AntiAntiSwearingBot;
|
|
|
|
public class ServiceSettings
|
|
{
|
|
public string Urls { get; set; }
|
|
}
|
|
|
|
public class UnbleeperSettings
|
|
{
|
|
public string BleepedSwearsRegex { get; set; }
|
|
public int MinAmbiguousWordLength { get; set; }
|
|
public int MinWordLength { get; set; }
|
|
}
|
|
|
|
public class SearchDictionarySettings
|
|
{
|
|
public string DictionaryPath { get; set; }
|
|
}
|
|
|
|
public class TelegramSettings
|
|
{
|
|
public string ApiKey { get; set; }
|
|
public bool UseProxy { get; set; }
|
|
public string Url { get; set; }
|
|
public int Port { get; set; }
|
|
public string Login { get; set; }
|
|
public string Password { get; set; }
|
|
}
|