Kenmei manga library entry with reading progress, metadata, and timestamps.

export interface KenmeiManga {
id: number;
title: string;
status: KenmeiStatus;
score: number;
url: string;
coverUrl?: string;
chaptersRead: number;
totalChapters?: number;
volumesRead?: number;
totalVolumes?: number;
notes?: string;
lastReadAt?: string;
createdAt: string;
updatedAt: string;
author?: string;
alternativeTitles?: string[];
anilistId?: number; // Optional AniList ID for direct matching
}
interface KenmeiManga {
    id: number;
    title: string;
    status: KenmeiStatus;
    score: number;
    url: string;
    coverUrl?: string;
    chaptersRead: number;
    totalChapters?: number;
    volumesRead?: number;
    totalVolumes?: number;
    notes?: string;
    lastReadAt?: string;
    createdAt: string;
    updatedAt: string;
    author?: string;
    alternativeTitles?: string[];
    anilistId?: number;
}

Properties

id: number
title: string
status: KenmeiStatus
score: number
url: string
coverUrl?: string
chaptersRead: number
totalChapters?: number
volumesRead?: number
totalVolumes?: number
notes?: string
lastReadAt?: string
createdAt: string
updatedAt: string
author?: string
alternativeTitles?: string[]
anilistId?: number