mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 21:54:47 -04:00
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
17 lines
591 B
C#
17 lines
591 B
C#
using System.Collections.Generic;
|
|
using YamlDotNet.Serialization;
|
|
|
|
namespace API.DTOs.CoverDb;
|
|
|
|
public class CoverDbAuthor
|
|
{
|
|
[YamlMember(Alias = "name", ApplyNamingConventions = false)]
|
|
public string Name { get; set; }
|
|
[YamlMember(Alias = "aliases", ApplyNamingConventions = false)]
|
|
public List<string> Aliases { get; set; } = new List<string>();
|
|
[YamlMember(Alias = "ids", ApplyNamingConventions = false)]
|
|
public CoverDbPersonIds Ids { get; set; }
|
|
[YamlMember(Alias = "image_path", ApplyNamingConventions = false)]
|
|
public string ImagePath { get; set; }
|
|
}
|