Files

8 lines
133 B
C#
Raw Permalink Normal View History

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