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:
commit
24e0dd30ea
1 changed files with 1 additions and 2 deletions
|
@ -5,10 +5,9 @@ namespace Octobot.Data;
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public sealed class MemberData
|
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;
|
Id = id;
|
||||||
BannedUntil = bannedUntil;
|
|
||||||
if (reminders is not null)
|
if (reminders is not null)
|
||||||
{
|
{
|
||||||
Reminders = reminders;
|
Reminders = reminders;
|
||||||
|
|
Loading…
Add table
Reference in a new issue