15 lines
409 B
C#
15 lines
409 B
C#
using JetBrains.Annotations;
|
|
|
|
namespace VideoGameQuotes.Api {
|
|
/// <summary>
|
|
/// Provides an interface for identifying the current user
|
|
/// </summary>
|
|
public interface ICurrentUserProvider {
|
|
/// <summary>
|
|
/// Returns the user currently performing actions on the site, or <c>null</c>
|
|
/// if the user cannot be identified
|
|
/// </summary>
|
|
[CanBeNull]
|
|
User CurrentUser { get; }
|
|
}
|
|
} |