mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 20:24:27 -04:00
13 lines
342 B
C#
13 lines
342 B
C#
namespace API.DTOs;
|
|
|
|
/// <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!;
|
|
}
|