using JetBrains.Annotations; namespace VideoGameQuotes.Api { public interface ICurrentUserProvider { [CanBeNull] User CurrentUser { get; } } }