Fixing UI thread issues with bulk operations and request queue refactoring.

This commit is contained in:
Burak Kaan Köse
2026-04-20 02:18:23 +02:00
parent 3bd0b69429
commit 54148716bb
38 changed files with 1644 additions and 206 deletions
+11
View File
@@ -0,0 +1,11 @@
using System;
using Wino.Core.Domain.Enums;
namespace Wino.Messaging.UI;
public sealed record MailStateChange(Guid UniqueId, bool? IsRead = null, bool? IsFlagged = null)
{
public MailCopyChangeFlags ChangedProperties =>
(IsRead.HasValue ? MailCopyChangeFlags.IsRead : MailCopyChangeFlags.None) |
(IsFlagged.HasValue ? MailCopyChangeFlags.IsFlagged : MailCopyChangeFlags.None);
}