2025-11-12 15:44:43 +01:00
|
|
|
using System;
|
2024-04-18 01:44:37 +02:00
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
namespace Wino.Mail.ViewModels.Messages;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// When listing view model manipulated the selected mail container in the UI.
|
|
|
|
|
/// </summary>
|
2025-11-12 15:44:43 +01:00
|
|
|
public record SelectMailItemContainerEvent(Guid MailUniqueId, bool ScrollToItem = false);
|