using System;
using Wino.Core.Domain.Enums;
namespace Wino.Messaging.UI;
///
/// Emitted when synchronizer state is updated.
///
/// Account Synchronizer
/// New state.
public record AccountSynchronizerStateChanged(Guid AccountId, AccountSynchronizerState NewState) : UIMessageBase;