feat: add reminder scheduling and sound controls

This commit is contained in:
2026-06-01 21:01:11 +08:00
parent 4a7b739eea
commit c794e32023
36 changed files with 2494 additions and 35 deletions
+20
View File
@@ -0,0 +1,20 @@
#pragma once
#include "ReminderTypes.h"
#include <QString>
class ReminderManager;
struct ReminderCommandResult
{
bool success = false;
QString message;
ReminderItem item;
};
class ReminderCommandHandler
{
public:
static ReminderCommandResult handle(const QString &text, ReminderManager &manager);
};