Files
WebNovelPortal/DBConnection/Repositories/Interfaces/INovelRepository.cs

8 lines
185 B
C#

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