2024-07-16 14:56:46 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using Wino.Core.Domain.Enums;
|
|
|
|
|
|
|
2024-07-17 22:36:10 +02:00
|
|
|
|
namespace Wino.Messaging.Client.Synchronization
|
2024-07-16 14:56:46 +02:00
|
|
|
|
{
|
|
|
|
|
|
public record AccountSynchronizationCompleted(Guid AccountId, SynchronizationCompletedState Result, Guid? SynchronizationTrackingId);
|
|
|
|
|
|
}
|