namespace StreakBot.Data.Entities; public class Streak { public int Id { get; set; } public DateTime CreatedDate { get; set; } public ulong User1Id { get; set; } public ulong User2Id { get; set; } public ulong ServerId { get; set; } public ulong ChannelId { get; set; } public bool User1MessageSent { get; set; } public bool User2MessageSent { get; set; } public int StreakNumber { get; set; } public DateTime LastResetCheck { get; set; } public bool ReminderSent { get; set; } public int? StreakNumberToRestore { get; set; } public int MonthlyRestores { get; set; } = 5; }