Files
Wino-Mail/Wino.Core/Integration/Processors/ImapChangeProcessor.cs

22 lines
884 B
C#
Raw Normal View History

2024-06-02 21:35:03 +02:00
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Wino.Core.Domain.Interfaces;
using Wino.Services;
2024-06-02 21:35:03 +02:00
2025-02-16 11:54:23 +01:00
namespace Wino.Core.Integration.Processors;
public class ImapChangeProcessor : DefaultChangeProcessor, IImapChangeProcessor
2024-06-02 21:35:03 +02:00
{
2025-02-16 11:54:23 +01:00
public ImapChangeProcessor(IDatabaseService databaseService,
IFolderService folderService,
IMailService mailService,
IAccountService accountService,
ICalendarService calendarService,
IMimeFileService mimeFileService) : base(databaseService, folderService, mailService, calendarService, accountService, mimeFileService)
2024-06-02 21:35:03 +02:00
{
}
2025-02-16 11:54:23 +01:00
public Task<IList<uint>> GetKnownUidsForFolderAsync(Guid folderId) => FolderService.GetKnownUidsForFolderAsync(folderId);
2024-06-02 21:35:03 +02:00
}