mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-27 08:45:02 -05:00
18 lines
422 B
C#
18 lines
422 B
C#
using System;
|
|
|
|
namespace API.DTOs.SeriesDetail;
|
|
|
|
public class NextExpectedChapterDto
|
|
{
|
|
public float ChapterNumber { get; set; }
|
|
public float VolumeNumber { get; set; }
|
|
/// <summary>
|
|
/// Null if not applicable
|
|
/// </summary>
|
|
public DateTime? ExpectedDate { get; set; }
|
|
/// <summary>
|
|
/// The localized title to render on the card
|
|
/// </summary>
|
|
public string Title { get; set; }
|
|
}
|