17 lines
383 B
C#
17 lines
383 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace FinlyticCore.Dtos.Fundamentals;
|
|
|
|
/// <summary>
|
|
/// Enthält einen Ticker mit zugehörigem Börsenplatz.
|
|
/// </summary>
|
|
[Serializable]
|
|
public record TickerInfoDto
|
|
{
|
|
[JsonPropertyName("ticker")]
|
|
public string Ticker { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("exchange")]
|
|
public string? Exchange { get; init; }
|
|
}
|