1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-04-20 08:53:36 +03:00
Octobot/Data/MemberData.cs
Octol1ttle 9c080d9691
Add support for temporary bans
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
2023-06-11 16:57:19 +05:00

11 lines
278 B
C#

namespace Boyfriend.Data;
public class MemberData {
public MemberData(ulong id, DateTimeOffset? bannedUntil) {
Id = id;
BannedUntil = bannedUntil;
}
public ulong Id { get; }
public DateTimeOffset? BannedUntil { get; set; }
}