mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 04:04:19 -04:00
14 lines
359 B
C#
14 lines
359 B
C#
namespace API.DTOs;
|
|
#nullable enable
|
|
|
|
/// <summary>
|
|
/// This is explicitly for Tachiyomi. Number field was removed in v0.8.0, but Tachiyomi needs it for the hacks.
|
|
/// </summary>
|
|
public class TachiyomiChapterDto : ChapterDto
|
|
{
|
|
/// <summary>
|
|
/// Smallest number of the Range.
|
|
/// </summary>
|
|
public string Number { get; init; } = default!;
|
|
}
|