namespace Femto.Common; public interface ICurrentUserContext { bool HasUser { get; } CurrentUser? CurrentUser { get; } } public record CurrentUser(Guid Id, string Username, string SessionId);