Import functionality for wino accounts, calendar sync UI, bunch of shell improvements
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using Wino.Core.Domain.Enums;
|
||||
|
||||
namespace Wino.Messaging.UI;
|
||||
|
||||
/// <summary>
|
||||
/// Emitted when calendar synchronization state for an account changes.
|
||||
/// </summary>
|
||||
public record AccountCalendarSynchronizationStateChanged(
|
||||
Guid AccountId,
|
||||
CalendarSynchronizationType SynchronizationType,
|
||||
bool IsSynchronizationInProgress,
|
||||
string SynchronizationStatus = "") : UIMessageBase<AccountCalendarSynchronizationStateChanged>;
|
||||
Reference in New Issue
Block a user