Next Estimated Chapter (#2342)
This commit is contained in:
parent
ca5afe94d3
commit
de9b09c71f
32 changed files with 433 additions and 73 deletions
17
API/DTOs/SeriesDetail/NextExpectedChapterDto.cs
Normal file
17
API/DTOs/SeriesDetail/NextExpectedChapterDto.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
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; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue