Kavita/API/DTOs/Recommendation/SeriesStaffDto.cs
2025-02-05 14:16:44 -08:00

14 lines
437 B
C#

namespace API.DTOs.Recommendation;
#nullable enable
public class SeriesStaffDto
{
public required string Name { get; set; }
public string? FirstName { get; set; }
public string? LastName { 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; }
}