vgquotes/Src/VideoGameQuotes.Api/ICurrentUserProvider.cs
2011-02-10 04:39:59 +00:00

8 lines
159 B
C#

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