Cleaning up the solution. Separating Shared.WinRT, Services and Synchronization. Removing synchronization from app. Reducing bundle size by 45mb.
This commit is contained in:
13
Wino.Services/Threading/OutlookThreadingStrategy.cs
Normal file
13
Wino.Services/Threading/OutlookThreadingStrategy.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using Wino.Domain.Interfaces;
|
||||
|
||||
namespace Wino.Services.Threading
|
||||
{
|
||||
// Outlook and Gmail is using the same threading strategy.
|
||||
// Outlook: ConversationId -> it's set as ThreadId
|
||||
// Gmail: ThreadId
|
||||
|
||||
public class OutlookThreadingStrategy : APIThreadingStrategy, IOutlookThreadingStrategy
|
||||
{
|
||||
public OutlookThreadingStrategy(IDatabaseService databaseService, IFolderService folderService) : base(databaseService, folderService) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user