Kavita/API/DTOs/TachiyomiChapterDto.cs
2025-03-23 15:06:20 -07:00

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!;
}