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.
This commit is contained in:
parent
e457b4609e
commit
d1133124b8
9 changed files with 15 additions and 15 deletions
|
@ -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; }
|
||||
}
|
||||
|
|
Reference in a new issue