19 lines
777 B
C#
19 lines
777 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace FinlyticFundamentals.Entities;
|
|
|
|
public class AssetDataEntity
|
|
{
|
|
[Key] public string Isin { get; set; } = string.Empty;
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
public TickerEntity PrimaryTicker { get; set; } = new();
|
|
public List<TickerEntity> AvailableTickers { get; set; } = new();
|
|
|
|
public ICollection<KeyExecutiveEntity> KeyExecutives { get; set; } = new List<KeyExecutiveEntity>();
|
|
public ICollection<AssetEventEntity> AssetEvents { get; set; } = new List<AssetEventEntity>();
|
|
public ICollection<FundamentalDataEntity> FundamentalData { get; set; } = new List<FundamentalDataEntity>();
|
|
} |