fix(ui): batch UI updates for bulk mark-as-read to prevent UI freeze (#786)

This commit is contained in:
Wynn Zeng
2026-01-28 03:25:05 +08:00
committed by GitHub
parent 7f8c6776fc
commit 4f65502c95
5 changed files with 73 additions and 9 deletions
@@ -0,0 +1,6 @@
using System.Collections.Generic;
using Wino.Core.Domain.Entities.Mail;
namespace Wino.Messaging.UI;
public record BulkMailUpdatedMessage(IReadOnlyList<MailCopy> UpdatedMails) : UIMessageBase<BulkMailUpdatedMessage>;