mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-21 22:40:34 -04:00
13 lines
352 B
C#
13 lines
352 B
C#
namespace API.DTOs.Recommendation;
|
|
#nullable enable
|
|
|
|
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; }
|
|
}
|