DarthMazut / MochaLibrary

Just another MVVM library which gives you some abstract classes out-of-the-box.
0 stars 0 forks source link

`ScheduledTime` has default value when creating Notification from `ToastNotification` #19

Open DarthMazut opened 6 months ago

DarthMazut commented 6 months ago

At NotificationCreationData.cs at ctor NotificationCreationData(ToastNotification dataSource) we're assigning default to ScheduledTime because ToastNotification does not carry information regarding schedule time.

To workaround this we'd need to pass value of schedule time into custom properties, like we're doing with NotificationId, RegistrationId and so on...

DarthMazut commented 2 months ago

Related #30