chore(backend): clean up redundant Finbuckle package and add ITenantProvider interface

This commit is contained in:
WorkClub Automation
2026-03-03 14:32:43 +01:00
parent 28964c6767
commit eff6fded72
2 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
namespace WorkClub.Application.Interfaces;
public interface ITenantProvider
{
string GetTenantId();
string GetUserRole();
}