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