mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
20 lines
408 B
C#
20 lines
408 B
C#
namespace API.DTOs.KavitaPlus.Metadata;
|
|
#nullable enable
|
|
|
|
public enum CharacterRole
|
|
{
|
|
Main = 0,
|
|
Supporting = 1,
|
|
Background = 2
|
|
}
|
|
|
|
|
|
public sealed record SeriesCharacter
|
|
{
|
|
public string Name { get; set; }
|
|
public required string Description { get; set; }
|
|
public required string Url { get; set; }
|
|
public string? ImageUrl { get; set; }
|
|
public CharacterRole Role { get; set; }
|
|
}
|