mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-07-09 03:04:20 -04:00
Update IRepository.cs
This commit is contained in:
parent
54b1aa9ba6
commit
4f0800c990
@ -145,7 +145,11 @@ namespace Kyoo.Controllers
|
|||||||
Task Delete(string showSlug, int seasonNumber, int episodeNumber);
|
Task Delete(string showSlug, int seasonNumber, int episodeNumber);
|
||||||
}
|
}
|
||||||
|
|
||||||
public interface ITrackRepository : IRepository<Track> { }
|
public interface ITrackRepository : IRepository<Track>
|
||||||
|
{
|
||||||
|
Task<Track> Get(string slug, StreamType type = StreamType.Unknow);
|
||||||
|
}
|
||||||
|
|
||||||
public interface ILibraryRepository : IRepository<Library> { }
|
public interface ILibraryRepository : IRepository<Library> { }
|
||||||
|
|
||||||
public interface ILibraryItemRepository : IRepository<LibraryItem>
|
public interface ILibraryItemRepository : IRepository<LibraryItem>
|
||||||
@ -221,4 +225,4 @@ namespace Kyoo.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
public interface IProviderRepository : IRepository<ProviderID> {}
|
public interface IProviderRepository : IRepository<ProviderID> {}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user