mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-02 05:04:14 -04:00
* Removed directives, ensured we delete bookmarks and reading list items when chapters are deleted. * Added parsing support for "Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo Chapter 11-10"
13 lines
301 B
C#
13 lines
301 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using API.Entities;
|
|
|
|
namespace API.Interfaces.Repositories
|
|
{
|
|
public interface IChapterRepository
|
|
{
|
|
void Update(Chapter chapter);
|
|
Task<IEnumerable<Chapter>> GetChaptersByIdsAsync(IList<int> chapterIds);
|
|
}
|
|
}
|