2024-06-09 02:37:30 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
|
namespace Wino.Messaging.Client.Accounts;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Emitted when account menu items are reordered.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="newOrderDictionary">New order info.</param>
|
|
|
|
|
|
public record AccountMenuItemsReordered(Dictionary<Guid, int> newOrderDictionary);
|