Kavita/API/DTOs/SeriesDetail/NextExpectedChapterDto.cs
2023-10-22 08:44:26 -07:00

17 lines
420 B
C#

using System;
namespace API.DTOs.SeriesDetail;
public class NextExpectedChapterDto
{
public float ChapterNumber { get; set; }
public int 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; }
}