mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-09-13 13:58:20 -04:00
16 lines
385 B
C#
16 lines
385 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Cleanuparr.Domain.Enums;
|
|
|
|
/// <summary>
|
|
/// The LazyLibrarian library a wanted row belongs to, read from its AuxInfo column.
|
|
/// A magazine issue date or a comic issue key reads as Unknown.
|
|
/// </summary>
|
|
[JsonConverter(typeof(TolerantEnumConverter<BookLibrary>))]
|
|
public enum BookLibrary
|
|
{
|
|
Unknown = 0,
|
|
EBook,
|
|
AudioBook,
|
|
}
|