1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-05-06 14:06:29 +03:00

fix: apply new inspection fixes

This commit is contained in:
Octol1ttle 2024-08-24 20:38:45 +05:00
parent e457b4609e
commit 4e915c3244
Signed by: Octol1ttle
GPG key ID: B77C34313AEE1FFF
9 changed files with 15 additions and 15 deletions

View file

@ -1,9 +1,9 @@
namespace TeamOctolings.Octobot.Data;
public struct Reminder
public sealed record Reminder
{
public DateTimeOffset At { get; init; }
public string Text { get; init; }
public ulong ChannelId { get; init; }
public ulong MessageId { get; init; }
public required DateTimeOffset At { get; init; }
public required string Text { get; init; }
public required ulong ChannelId { get; init; }
public required ulong MessageId { get; init; }
}