Kavita/API/DTOs/Recommendation/SeriesStaffDto.cs
2025-05-04 07:14:44 -07:00

15 lines
445 B
C#

namespace API.DTOs.Recommendation;
#nullable enable
public sealed record 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; }
}