mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
11 lines
286 B
C#
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>();
|
|
}
|