8 lines
154 B
C#
8 lines
154 B
C#
using Treestar.Shared.Models.DBDomain;
|
|
|
|
namespace DBConnection.Repositories.Interfaces;
|
|
|
|
public interface IAuthorRepository : IRepository<Author>
|
|
{
|
|
|
|
} |