mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-10-18 04:20:35 -04: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; }
|
|
}
|