using AssetManager.Models.DTOs; namespace AssetManager.Services; /// /// 股票代码服务接口 /// public interface ITickerService { /// /// 模糊搜索股票代码 /// /// 搜索关键词 /// 返回数量上限 /// 匹配的股票代码列表 Task> SearchTickerAsync(string keyword, int limit = 20); }