Add IChapter

This commit is contained in:
glax 2024-10-20 02:09:12 +02:00
parent 442b2ce0cc
commit ca3aa2e8e8

View File

@ -0,0 +1,10 @@
import IManga from "./IManga";
export default interface IChapter{
parentManga: IManga;
name: string | undefined;
volumeNumber: string;
chapterNumber: string;
url: string;
fileName: string;
}