namespace IncidentOps.Contracts.Auth; public record AuthResponse(string AccessToken, string RefreshToken, ActiveOrgDto ActiveOrg); public record ActiveOrgDto(Guid Id, string Name, string Slug, string Role);