using JetBrains.Annotations; namespace VideoGameQuotes.Api { /// /// Provides an interface for identifying the current user /// public interface ICurrentUserProvider { /// /// Returns the user currently performing actions on the site, or null /// if the user cannot be identified /// [CanBeNull] User CurrentUser { get; } } }