mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-05-20 23:02:33 -04:00
ba20ad4ecc
Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
18 lines
419 B
C#
18 lines
419 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.DTOs;
|
|
|
|
public class UpdatePersonDto
|
|
{
|
|
[Required]
|
|
public int Id { get; init; }
|
|
[Required]
|
|
public bool CoverImageLocked { get; set; }
|
|
public string? Description { get; set; }
|
|
|
|
public int? AniListId { get; set; }
|
|
public long? MalId { get; set; }
|
|
public string? HardcoverId { get; set; }
|
|
public string? Asin { get; set; }
|
|
}
|