Loading the database into the memory.

This commit is contained in:
2026-02-28 23:38:21 +00:00
parent e806e3cc1f
commit df122f1470
4 changed files with 96 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
namespace Reactor.Models
{
public class ReactionMessage
{
public long Id { get; set; }
public long PlanetId { get; set; }
public long ChannelId { get; set; }
public long MessageId { get; set; }
public int DeleteDelaySeconds { get; set; } = 5;
public Dictionary<string, long> Reactions { get; set; } = new();
}
}