mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-01-31 09:09:00 +03:00
8 lines
190 B
C#
8 lines
190 B
C#
namespace TeamOctolings.Octobot.Data;
|
|
|
|
public struct Warn
|
|
{
|
|
public ulong WarnedBy { get; init; }
|
|
public DateTimeOffset At { get; init; }
|
|
public string Reason { get; init; }
|
|
}
|