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 AvailableTickers { get; set; } = new(); public ICollection KeyExecutives { get; set; } = new List(); public ICollection AssetEvents { get; set; } = new List(); public ICollection FundamentalData { get; set; } = new List(); }