1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-01-31 09:09:00 +03:00
Octobot/TeamOctolings.Octobot/Data/Reminder.cs
Octol1ttle d1133124b8
Apply new inspection fixes (#329)
Rider and R# 2024.2 have introduced new inspections, causing current
builds to fail. This PR applies fixes for issues caught by these
inspections.
2024-08-24 20:48:47 +05:00

9 lines
275 B
C#

namespace TeamOctolings.Octobot.Data;
public sealed record Reminder
{
public required DateTimeOffset At { get; init; }
public required string Text { get; init; }
public required ulong ChannelId { get; init; }
public required ulong MessageId { get; init; }
}