12 lines
366 B
C#
12 lines
366 B
C#
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);
|
|
}
|
|
}
|