Kavita/API/DTOs/CoverDb/CoverDbPeople.cs
2025-05-04 07:14:44 -07:00

11 lines
286 B
C#

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