mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-04 06:04:37 -04:00
* Capture date when Kavita creates a MangaFile so we can show the date on the UI. * On startup, exit early for migration directory if it's a fresh install and we have migrations to run but no settings stored yet. * Blur summaries should apply when there isn't any read more collapsable * Fixed custom theme files not loading. * Cleaned up the logic for displaying the manga file date
16 lines
329 B
C#
16 lines
329 B
C#
using System;
|
|
using API.Entities.Enums;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
public class MangaFileDto
|
|
{
|
|
public int Id { get; init; }
|
|
public string FilePath { get; init; }
|
|
public int Pages { get; init; }
|
|
public MangaFormat Format { get; init; }
|
|
public DateTime Created { get; init; }
|
|
|
|
}
|
|
}
|