using System.ComponentModel.DataAnnotations; namespace FinlyticFundamentals.Entities; public class AssetDataEntity { [Key] public string Isin { get; set; } = ""; public string Description { get; set; } = ""; public ICollection KeyExecutives { get; set; } public ICollection AssetEvents { get; set; } }