Files
Unbinder/Unbinder/Repositories/IIngredientRepository.cs
2023-11-16 12:05:20 -06:00

9 lines
148 B
C#

using Unbinder.Models;
namespace Unbinder.Repositories
{
public interface IIngredientRepository : IBaseRepository<Ingredient>
{
}
}