namespace AssetManager.Models.DTOs; /// /// 股票代码搜索结果 /// public class TickerSearchResult { public string? Ticker { get; set; } public string? Name { get; set; } public string? Exchange { get; set; } public string? AssetType { get; set; } public string? PriceCurrency { get; set; } }