2024-07-16 14:56:46 +02:00
|
|
|
|
using Wino.Core.Domain.Models.Synchronization;
|
|
|
|
|
|
|
2024-07-16 23:28:57 +02:00
|
|
|
|
namespace Wino.Messages.Client.Synchronization
|
2024-07-16 14:56:46 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Triggers a new synchronization if possible.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="Options">Options for synchronization.</param>
|
|
|
|
|
|
public record NewSynchronizationRequested(SynchronizationOptions Options);
|
|
|
|
|
|
}
|