using System;
using System.Collections.Generic;
using Wino.Core.Domain.Interfaces;
using Wino.Core.Domain.Models.Folders;
namespace Wino.Messaging.Server;
///
/// Raised when user performs search on the search bar.
///
/// Accounts that performs the query. Multiple accounts for linked accounts.
/// Search query.
/// Folders to include in search. All folders if null.
public record OnlineSearchRequested(List AccountIds, string QueryText, List Folders) : IClientMessage;