mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
* fix: Fixed placeholders not working * fix: Fixed some countries in countries.yml for hangman game * add: Added custom status overload for \`.adpl\` * dev: Removed some unused strings * fix: Fixed postgres support in Nadeko * remove: Removed mysql support, it was broken for a while and some queries weren't compiling. * dev: Updated image library * fix: Some command strings fixed and clarified
21 lines
425 B
C#
21 lines
425 B
C#
namespace NadekoBot.Services;
|
|
|
|
public enum GreetType
|
|
{
|
|
Greet,
|
|
GreetDm,
|
|
Bye,
|
|
Boost,
|
|
}
|
|
|
|
public class GreetSettings
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public ulong GuildId { get; set; }
|
|
public GreetType GreetType { get; set; }
|
|
public string? MessageText { get; set; }
|
|
public bool IsEnabled { get; set; }
|
|
public ulong? ChannelId { get; set; }
|
|
public int AutoDeleteTimer { get; set; }
|
|
} |