Fix inspection warnings (#208)

Signed-off-by: neroduckale <100025711+neroduckale@users.noreply.github.com>
This commit is contained in:
neroduckale 2023-12-06 00:24:55 +05:00 committed by GitHub
parent 4c50bdaff7
commit bcd1db8c8e
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 22 additions and 25 deletions

View file

@ -18,6 +18,6 @@ public sealed class MemberData
public ulong Id { get; }
public DateTimeOffset? BannedUntil { get; set; }
public DateTimeOffset? MutedUntil { get; set; }
public List<ulong> Roles { get; set; } = new();
public List<Reminder> Reminders { get; } = new();
public List<ulong> Roles { get; set; } = [];
public List<Reminder> Reminders { get; } = [];
}