1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-04-20 00:43:36 +03:00
Octobot/Data/MemberData.cs
Octol1ttle d46b08df08
Add /remind command
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
2023-07-08 16:07:37 +05:00

18 lines
498 B
C#

using Remora.Rest.Core;
namespace Boyfriend.Data;
/// <summary>
/// Stores information about a member
/// </summary>
public class MemberData {
public MemberData(ulong id, DateTimeOffset? bannedUntil) {
Id = id;
BannedUntil = bannedUntil;
}
public ulong Id { get; }
public DateTimeOffset? BannedUntil { get; set; }
public List<Snowflake> Roles { get; set; } = new();
public List<Reminder> Reminders { get; } = new();
}