11 lines
240 B
C#
11 lines
240 B
C#
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace StellaOps.Scheduler.WebService.Auth;
|
|
|
|
public interface ITenantContextAccessor
|
|
{
|
|
TenantContext GetTenant(HttpContext context);
|
|
}
|
|
|
|
public sealed record TenantContext(string TenantId);
|