mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-28 17:25:03 -05:00
12 lines
335 B
C#
12 lines
335 B
C#
namespace API.DTOs.Recommendation;
|
|
|
|
public class SeriesStaffDto
|
|
{
|
|
public required string Name { get; set; }
|
|
public required string Url { get; set; }
|
|
public required string Role { get; set; }
|
|
public string? ImageUrl { get; set; }
|
|
public string? Gender { get; set; }
|
|
public string? Description { get; set; }
|
|
}
|