diff --git a/API/API.csproj b/API/API.csproj
index 8947c33..e9936a3 100644
--- a/API/API.csproj
+++ b/API/API.csproj
@@ -10,6 +10,7 @@
+
diff --git a/API/Authentication/Interfaces/IGenericAuthentication.cs b/API/Authentication/Interfaces/IGenericAuthentication.cs
index 74698d9..a63fa08 100644
--- a/API/Authentication/Interfaces/IGenericAuthentication.cs
+++ b/API/Authentication/Interfaces/IGenericAuthentication.cs
@@ -2,7 +2,7 @@ using DAL.Models;
namespace API.Authentication.Interfaces
{
- public interface IGenericAuthentication
+ public interface IGenericAuthentication
{
bool canGetAll(User user);
bool canGet(TModel model, User user);
diff --git a/API/Authentication/Interfaces/IYesAuthentication.cs b/API/Authentication/Interfaces/IYesAuthentication.cs
new file mode 100644
index 0000000..091a378
--- /dev/null
+++ b/API/Authentication/Interfaces/IYesAuthentication.cs
@@ -0,0 +1,6 @@
+namespace API.Authentication.Interfaces
+{
+ public interface IYesAuthentication : IGenericAuthentication