using System;
namespace Wino.Messaging.Client.Mails;
///
/// When a IMailItem needs to be navigated (or selected)
///
/// UniqueId of the mail to navigate.
/// Whether navigated item should be scrolled to or not..
public record MailItemNavigationRequested(Guid UniqueMailId, bool ScrollToItem = false);