Kavita/API/DTOs/Recommendation/SeriesStaffDto.cs
2023-12-13 17:16:54 -08:00

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