AssetManager.API/AssetManager.Models/DTOs/TickerDTO.cs

14 lines
341 B
C#

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; }
}