Add tag functionality to reminders.

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-03-26 08:11:14 -06:00
parent 42afa87464
commit 6455af96bf
9 changed files with 35 additions and 5 deletions

View File

@@ -17,5 +17,6 @@
/// Recurring Reminders
/// </summary>
public bool IsRecurring { get; set; } = false;
public List<string> Tags { get; set; } = new List<string>();
}
}