mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
18 lines
430 B
C#
18 lines
430 B
C#
using System;
|
|
|
|
namespace API.DTOs.SeriesDetail;
|
|
|
|
public sealed record 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; }
|
|
}
|