Files
work-club-manager/backend/WorkClub.Application/Interfaces/ITenantProvider.cs

8 lines
133 B
C#
Raw Normal View History

namespace WorkClub.Application.Interfaces;
public interface ITenantProvider
{
string GetTenantId();
string GetUserRole();
}