namespace Connected.Security.Identity { public interface IIdentityService { IUser? CurrentUser { get; } bool IsAuthenticated { get; } } }