feat(core): update DTOs, Trade Republic client, Yahoo scrapers, and dynamic settings
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace FinlyticCore.Dtos.Fundamentals;
|
||||
|
||||
/// <summary>
|
||||
/// Enthält die Stammdaten eines Unternehmens/Assets.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public record AssetHeaderDto
|
||||
{
|
||||
[JsonPropertyName("isin")]
|
||||
public string Isin { get; init; } = string.Empty;
|
||||
|
||||
[JsonPropertyName("name")]
|
||||
public string Name { get; init; } = string.Empty;
|
||||
|
||||
[JsonPropertyName("description")]
|
||||
public string Description { get; init; } = string.Empty;
|
||||
|
||||
[JsonPropertyName("primaryTicker")]
|
||||
public TickerInfoDto PrimaryTicker { get; init; }
|
||||
|
||||
[JsonPropertyName("availableTickers")]
|
||||
public List<TickerInfoDto> AvailableTickers { get; init; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user