Fix notification activation and calendar bootstrap flow

This commit is contained in:
Burak Kaan Köse
2026-04-16 01:32:48 +02:00
parent 94675eee9a
commit e13aaadc78
15 changed files with 844 additions and 209 deletions
@@ -1,4 +1,5 @@
using System;
#nullable enable
using System;
namespace Wino.Core.Domain.Models.Calendar;
@@ -18,4 +19,9 @@ public class CalendarPageNavigationArgs
/// Force reloading the calendar data even when the target range does not change.
/// </summary>
public bool ForceReload { get; set; }
/// <summary>
/// Optional event target to navigate to after the calendar page loads the requested range.
/// </summary>
public CalendarItemTarget? PendingTarget { get; set; }
}