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