2024-04-18 01:44:37 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
|
namespace Wino.Messaging.Client.Mails;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// When a IMailItem needs to be navigated (or selected)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="UniqueMailId">UniqueId of the mail to navigate.</param>
|
|
|
|
|
|
/// <param name="ScrollToItem">Whether navigated item should be scrolled to or not..</param>
|
|
|
|
|
|
public record MailItemNavigationRequested(Guid UniqueMailId, bool ScrollToItem = false);
|