Kavita/API/DTOs/SeriesMetadataDto.cs
Joseph Milazzo 52f8fbe3db
Bulk Add to Collection (#674)
* Fixed the typeahead not having the same size input box as other inputs

* Implemented the ability to add multiple series to a collection through bulk operations flow. Updated book parser to handle "@import url('...');" syntax as well as @import '...';

* Implemented the ability to create a new Collection tag via bulk operations flow.
2021-10-14 17:23:21 -07:00

16 lines
No EOL
459 B
C#

using System.Collections.Generic;
using API.DTOs.CollectionTags;
using API.Entities;
namespace API.DTOs
{
public class SeriesMetadataDto
{
public int Id { get; set; }
public ICollection<string> Genres { get; set; }
public ICollection<CollectionTagDto> Tags { get; set; }
public ICollection<Person> Persons { get; set; }
public string Publisher { get; set; }
public int SeriesId { get; set; }
}
}