mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
12 lines
328 B
C#
12 lines
328 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using API.DTOs.CollectionTags;
|
|
|
|
namespace API.DTOs;
|
|
|
|
public class UpdateSeriesMetadataDto
|
|
{
|
|
public SeriesMetadataDto SeriesMetadata { get; set; } = default!;
|
|
public ICollection<CollectionTagDto> CollectionTags { get; set; } = default!;
|
|
}
|