Cleaning up the solution. Separating Shared.WinRT, Services and Synchronization. Removing synchronization from app. Reducing bundle size by 45mb.
This commit is contained in:
11
Wino.Core.Domain/Interfaces/IImapChangeProcessor.cs
Normal file
11
Wino.Core.Domain/Interfaces/IImapChangeProcessor.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace Wino.Domain.Interfaces
|
||||
{
|
||||
public interface IImapChangeProcessor : IDefaultChangeProcessor
|
||||
{
|
||||
/// <summary>
|
||||
/// Returns all known uids for the given folder.
|
||||
/// </summary>
|
||||
/// <param name="folderId">Folder id to retrieve uIds for.</param>
|
||||
Task<IList<uint>> GetKnownUidsForFolderAsync(Guid folderId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user