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

Merge branch 'master' into fix-281

This commit is contained in:
Macintxsh 2024-03-24 15:16:02 +03:00 committed by GitHub
commit 24e0dd30ea
Signed by: GitHub
GPG key ID: B5690EEEBB952194

View file

@ -5,10 +5,9 @@ namespace Octobot.Data;
/// </summary>
public sealed class MemberData
{
public MemberData(ulong id, DateTimeOffset? bannedUntil = null, List<Reminder>? reminders = null)
public MemberData(ulong id, List<Reminder>? reminders = null)
{
Id = id;
BannedUntil = bannedUntil;
if (reminders is not null)
{
Reminders = reminders;