mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-02-11 22:14:27 -05:00
10 lines
254 B
C#
10 lines
254 B
C#
namespace API.DTOs.KavitaPlus.Metadata;
|
|
|
|
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; }
|
|
}
|