1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-01-31 17:19:00 +03:00
Octobot/TeamOctolings.Octobot/Data/Warn.cs

9 lines
190 B
C#
Raw Permalink Normal View History

2024-06-02 07:56:12 +03:00
namespace TeamOctolings.Octobot.Data;
public struct Warn
{
public ulong WarnedBy { get; init; }
public DateTimeOffset At { get; init; }
public string Reason { get; init; }
}