- GetNavHistoryAsync现在会自动检查是否有历史数据 - 无历史数据时自动调用BackfillNavHistoryInternalAsync - 拆分内部回填方法,避免重复验证权限
14 lines
341 B
C#
Executable File
14 lines
341 B
C#
Executable File
namespace AssetManager.Models.DTOs;
|
|
|
|
/// <summary>
|
|
/// 股票代码搜索结果
|
|
/// </summary>
|
|
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; }
|
|
}
|