1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-04-20 00:43:36 +03:00

Remove redundant guild configuration initializers

Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
Octol1ttle 2023-06-02 17:07:58 +05:00
parent 4b8c3fd11c
commit e116263a9d
Signed by: Octol1ttle
GPG key ID: B77C34313AEE1FFF

View file

@ -16,12 +16,12 @@ public class GuildConfiguration {
public bool RemoveRolesOnMute { get; set; } public bool RemoveRolesOnMute { get; set; }
public bool ReturnRolesOnRejoin { get; set; } public bool ReturnRolesOnRejoin { get; set; }
public bool AutoStartEvents { get; set; } public bool AutoStartEvents { get; set; }
public ulong PublicFeedbackChannel { get; set; } = 0; public ulong PublicFeedbackChannel { get; set; }
public ulong PrivateFeedbackChannel { get; set; } = 0; public ulong PrivateFeedbackChannel { get; set; }
public ulong EventNotificationChannel { get; set; } = 0; public ulong EventNotificationChannel { get; set; }
public ulong StarterRole { get; set; } = 0; public ulong StarterRole { get; set; }
public ulong MuteRole { get; set; } = 0; public ulong MuteRole { get; set; }
public ulong EventNotificationRole { get; set; } = 0; public ulong EventNotificationRole { get; set; }
public List<NotificationReceiver> EventStartedReceivers { get; set; } public List<NotificationReceiver> EventStartedReceivers { get; set; }
= new() { NotificationReceiver.Interested, NotificationReceiver.Role }; = new() { NotificationReceiver.Interested, NotificationReceiver.Role };