using System;
using Wino.Core.Domain.Interfaces;
namespace Wino.Core.Domain.Models.Synchronization
{
///
/// Client request to server to check whether given account id is in the middle of synchronization.
///
/// Account id to check sync existence for.
public record SynchronizationExistenceCheckRequest(Guid AccountId) : IClientMessage;
}