15 lines
361 B
C#
15 lines
361 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace FinlyticFundamentals.Entities;
|
|
|
|
public class AssetDataEntity
|
|
{
|
|
|
|
[Key] public string Isin { get; set; } = "";
|
|
|
|
public string Description { get; set; } = "";
|
|
|
|
public ICollection<KeyExecutiveEntity> KeyExecutives { get; set; }
|
|
|
|
public ICollection<AssetEventEntity> AssetEvents { get; set; }
|
|
} |