using Microsoft.AspNetCore.Http; namespace StellaOps.Scheduler.WebService.Auth; public interface ITenantContextAccessor { TenantContext GetTenant(HttpContext context); } public sealed record TenantContext(string TenantId);