9 lines
148 B
C#
9 lines
148 B
C#
using Unbinder.Models;
|
|
|
|
namespace Unbinder.Repositories
|
|
{
|
|
public interface IIngredientRepository : IBaseRepository<Ingredient>
|
|
{
|
|
}
|
|
}
|