using System.Text.Json.Serialization; using Wino.Messaging.UI; namespace Wino.Messaging; [JsonSourceGenerationOptions(WriteIndented = true)] [JsonSerializable(typeof(MailAddedMessage))] [JsonSerializable(typeof(MailDownloadedMessage))] [JsonSerializable(typeof(MailRemovedMessage))] [JsonSerializable(typeof(MailUpdatedMessage))] [JsonSerializable(typeof(AccountCreatedMessage))] [JsonSerializable(typeof(AccountRemovedMessage))] [JsonSerializable(typeof(AccountUpdatedMessage))] [JsonSerializable(typeof(DraftCreated))] [JsonSerializable(typeof(DraftFailed))] [JsonSerializable(typeof(DraftMapped))] [JsonSerializable(typeof(FolderRenamed))] [JsonSerializable(typeof(FolderSynchronizationEnabled))] [JsonSerializable(typeof(MergedInboxRenamed))] [JsonSerializable(typeof(AccountSynchronizationCompleted))] [JsonSerializable(typeof(RefreshUnreadCountsMessage))] [JsonSerializable(typeof(AccountSynchronizerStateChanged))] [JsonSerializable(typeof(AccountSynchronizationProgressUpdatedMessage))] [JsonSerializable(typeof(AccountFolderConfigurationUpdated))] [JsonSerializable(typeof(CopyAuthURLRequested))] public partial class CommunicationMessagesContext : JsonSerializerContext;