Files
Wino-Mail/Wino.Core.Domain/Interfaces/ICustomFolderSynchronizationRequest.cs

22 lines
620 B
C#
Raw Normal View History

2024-04-18 01:44:37 +02:00
using System;
using System.Collections.Generic;
2025-02-16 11:54:23 +01:00
namespace Wino.Core.Domain.Interfaces;
/// <summary>
/// An interface that should force synchronizer to do synchronization for only given folder ids
/// after the execution is completed.
/// </summary>
public interface ICustomFolderSynchronizationRequest
2024-04-18 01:44:37 +02:00
{
/// <summary>
2025-02-16 11:54:23 +01:00
/// Which folders to sync after this operation?
2024-04-18 01:44:37 +02:00
/// </summary>
2025-02-16 11:54:23 +01:00
List<Guid> SynchronizationFolderIds { get; }
2025-02-15 12:53:32 +01:00
2025-02-16 11:54:23 +01:00
/// <summary>
/// If true, additional folders like Sent, Drafts and Deleted will not be synchronized
/// </summary>
bool ExcludeMustHaveFolders { get; }
2024-04-18 01:44:37 +02:00
}