mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-20 00:43:36 +03:00
11 lines
278 B
C#
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; }
|
|
}
|