Files
WebNovelPortal/DBConnection/Repositories/Interfaces/INovelRepository.cs
littlefoot e6d6b629db
Some checks failed
continuous-integration/drone/push Build is failing
db changes and build pipeline
2022-07-15 12:21:37 -04:00

8 lines
173 B
C#

using DBConnection.Models;
namespace DBConnection.Repositories.Interfaces;
public interface INovelRepository : IRepository<Novel>
{
Task<Novel?> GetNovel(Guid guid);
}