mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-06-13 15:27:53 +02:00
Add IChapter
This commit is contained in:
10
Website/modules/interfaces/IChapter.tsx
Normal file
10
Website/modules/interfaces/IChapter.tsx
Normal 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;
|
||||||
|
}
|
Reference in New Issue
Block a user