2024-07-16 14:56:46 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using Wino.Core.Domain.Entities;
|
|
|
|
|
|
|
2024-07-17 22:36:10 +02:00
|
|
|
|
namespace Wino.Messaging.Client.Shell
|
2024-07-16 14:56:46 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// When
|
|
|
|
|
|
/// - There is no selection of any folder for any account
|
|
|
|
|
|
/// - Multiple accounts exists
|
|
|
|
|
|
/// - User clicked 'Create New Mail'
|
|
|
|
|
|
///
|
|
|
|
|
|
/// flyout must be presented to pick correct account.
|
|
|
|
|
|
/// This message will be picked up by UWP Shell.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public record CreateNewMailWithMultipleAccountsRequested(IEnumerable<MailAccount> AllAccounts);
|
|
|
|
|
|
}
|