using System.Collections.Generic; using YamlDotNet.Serialization; namespace API.DTOs.CoverDb; public sealed record CoverDbPeople { [YamlMember(Alias = "people", ApplyNamingConventions = false)] public List People { get; set; } = new List(); }