
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
10 lines
278 B
C#
10 lines
278 B
C#
using System.Collections.Generic;
|
|
using YamlDotNet.Serialization;
|
|
|
|
namespace API.DTOs.CoverDb;
|
|
|
|
public class CoverDbPeople
|
|
{
|
|
[YamlMember(Alias = "people", ApplyNamingConventions = false)]
|
|
public List<CoverDbAuthor> People { get; set; } = new List<CoverDbAuthor>();
|
|
}
|