15 lines
502 B
C#
15 lines
502 B
C#
namespace FinlyticAssets.Entities;
|
|
|
|
public abstract class AssetEntity
|
|
{
|
|
public string Isin { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Type { get; set; } = string.Empty;
|
|
public string InstrumentCategory { get; set; } = string.Empty;
|
|
public bool HasCfd { get; set; }
|
|
public string? ImageId { get; set; }
|
|
|
|
public DateTime LastUpdatedAt { get; set; } = DateTime.UtcNow;
|
|
|
|
public List<TagEntity> Tags { get; set; } = new();
|
|
} |