mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-01-31 17:19:00 +03:00
11 lines
201 B
C#
11 lines
201 B
C#
|
using Remora.Rest.Core;
|
|||
|
|
|||
|
namespace Octobot.Data;
|
|||
|
|
|||
|
public struct Warn
|
|||
|
{
|
|||
|
public ulong WarnedBy { get; init; }
|
|||
|
public DateTimeOffset At { get; init; }
|
|||
|
public string Reason { get; init; }
|
|||
|
}
|