Kavita/API/DTOs/Reader/FileDimensionDto.cs
2025-05-04 07:14:44 -07:00

15 lines
474 B
C#

namespace API.DTOs.Reader;
public sealed record FileDimensionDto
{
public int Width { get; set; }
public int Height { get; set; }
public int PageNumber { get; set; }
/// <summary>
/// The filename of the cached file. If this was nested in a subfolder, the foldername will be appended with _
/// </summary>
/// <example>chapter01_page01.png</example>
public string FileName { get; set; } = default!;
public bool IsWide { get; set; }
}