Kavita/API/DTOs/LibraryTypeDto.cs
Joseph Milazzo b3f6a574cd Lots of changes to get magazines working.
Some notes is that magazines in reading list mode do not properly load up.

Parsing code still needs some work. Need to restrict to really just a small set of conventions until community can give me real data to code against.
2024-02-11 14:30:13 -06:00

12 lines
248 B
C#

using API.Entities.Enums;
namespace API.DTOs;
/// <summary>
/// Simple pairing of LibraryId and LibraryType
/// </summary>
public class LibraryTypeDto
{
public int LibraryId { get; set; }
public LibraryType LibraryType { get; set; }
}