2024-07-16 14:56:46 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
|
2024-07-17 22:36:10 +02:00
|
|
|
|
namespace Wino.Messaging.Client.Mails
|
2024-07-16 14:56:46 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <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);
|
|
|
|
|
|
}
|