
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.
12 lines
248 B
C#
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; }
|
|
}
|