diff --git a/backend/WorkClub.Api/WorkClub.Api.csproj b/backend/WorkClub.Api/WorkClub.Api.csproj index e4116e2..7748a7d 100644 --- a/backend/WorkClub.Api/WorkClub.Api.csproj +++ b/backend/WorkClub.Api/WorkClub.Api.csproj @@ -8,7 +8,6 @@ - diff --git a/backend/WorkClub.Application/Interfaces/ITenantProvider.cs b/backend/WorkClub.Application/Interfaces/ITenantProvider.cs new file mode 100644 index 0000000..39714c2 --- /dev/null +++ b/backend/WorkClub.Application/Interfaces/ITenantProvider.cs @@ -0,0 +1,7 @@ +namespace WorkClub.Application.Interfaces; + +public interface ITenantProvider +{ + string GetTenantId(); + string GetUserRole(); +}