vgquotes/Src/VideoGameQuotes.Api/ICurrentUserProvider.cs

15 lines
409 B
C#
Raw Normal View History

2011-02-10 04:39:59 +00:00
using JetBrains.Annotations;
namespace VideoGameQuotes.Api {
/// <summary>
/// Provides an interface for identifying the current user
/// </summary>
2011-02-10 04:39:59 +00:00
public interface ICurrentUserProvider {
/// <summary>
/// Returns the user currently performing actions on the site, or <c>null</c>
/// if the user cannot be identified
/// </summary>
2011-02-10 04:39:59 +00:00
[CanBeNull]
User CurrentUser { get; }
}
}