More Metadata Stuff (#3537)
This commit is contained in:
parent
8d3dcc637e
commit
53b13da0c9
34 changed files with 4123 additions and 129 deletions
|
|
@ -1,9 +1,18 @@
|
|||
namespace API.DTOs.KavitaPlus.Metadata;
|
||||
|
||||
public enum CharacterRole
|
||||
{
|
||||
Main = 0,
|
||||
Supporting = 1,
|
||||
Background = 2
|
||||
}
|
||||
|
||||
|
||||
public class 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; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue