25 lines
647 B
C#
25 lines
647 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace FinlyticCore.Dtos.Fundamentals;
|
|
|
|
/// <summary>
|
|
/// Repräsentiert eine Führungskraft/Vorstandsmitglied eines Unternehmens.
|
|
/// </summary>
|
|
[Serializable]
|
|
public record KeyExecutiveDto
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public Guid Id { get; init; }
|
|
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("title")]
|
|
public string Title { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("payment")]
|
|
public string Payment { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("sortOrder")]
|
|
public int SortOrder { get; init; } = 0;
|
|
} |