10 lines
404 B
C#
10 lines
404 B
C#
namespace FinlyticAssets.Entities;
|
|
|
|
public class EtfEntity : AssetEntity
|
|
{
|
|
public List<string> DerivativeProductCategories { get; set; } = new();
|
|
public string EtfDescription { get; set; } = string.Empty;
|
|
public string MappedEtfIndexName { get; set; } = string.Empty;
|
|
public string Subtitle { get; set; } = string.Empty;
|
|
public string SearchSubtitle { get; set; } = string.Empty;
|
|
} |