Files
git.stella-ops.org/src/Scheduler/StellaOps.Scheduler.WebService/Auth/ITenantContextAccessor.cs
2025-10-28 15:10:40 +02:00

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);