Kavita/API/DTOs/Recommendation/SeriesStaffDto.cs
2023-10-11 17:31:40 -07:00

11 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; }
}