mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-20 00:43:36 +03:00
14 lines
365 B
C#
14 lines
365 B
C#
using Remora.Rest.Core;
|
|
|
|
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; }
|
|
public List<Snowflake> Roles { get; set; } = new();
|
|
}
|